Deprecate AllIcons.Graph.FitContent duplicated by AllIcons.General.FitContent

GitOrigin-RevId: 6add5e7aa7a90c14bc39a31f7b9b63ae611bee97
This commit is contained in:
Sergey Malenkov
2020-01-20 15:07:21 +03:00
committed by intellij-monorepo-bot
parent aefdbada51
commit 02c8545bfe
5 changed files with 8 additions and 2 deletions

View File

@@ -72,7 +72,7 @@
</action>
<action class="org.intellij.images.editor.actions.FitZoomToWindowAction"
id="Images.Editor.FitZoomToWindow"
icon="AllIcons.Graph.FitContent"/>
icon="AllIcons.General.FitContent"/>
<separator/>
<action class="org.intellij.images.thumbnail.actions.UpFolderAction"

View File

Before

Width:  |  Height:  |  Size: 491 B

After

Width:  |  Height:  |  Size: 491 B

View File

Before

Width:  |  Height:  |  Size: 491 B

After

Width:  |  Height:  |  Size: 491 B

View File

@@ -1,3 +1,4 @@
deprecated: export.png -> /toolbarDecorator/export.svg; to be removed in IDEA 2020 - use AllIcons.ToolbarDecorator.Export
deprecated: fitContent.svg -> /general/fitContent.svg; to be removed in IDEA 2021 - use AllIcons.General.FitContent
deprecated: print.png -> /general/print.svg; to be removed in IDEA 2020 - use AllIcons.General.Print
deprecated: printPreview.png -> /actions/preview.svg; to be removed in IDEA 2020 - use AllIcons.Actions.Preview

View File

@@ -1001,7 +1001,6 @@ public class AllIcons {
public final static class Graph {
/** 16x16 */ public static final Icon ActualZoom = load("/graph/actualZoom.svg");
/** 16x16 */ public static final Icon FitContent = load("/graph/fitContent.svg");
/** 16x16 */ public static final Icon Grid = load("/graph/grid.svg");
/** 16x16 */ public static final Icon Layout = load("/graph/layout.svg");
/** 16x16 */ public static final Icon NodeSelectionMode = load("/graph/nodeSelectionMode.svg");
@@ -1015,6 +1014,12 @@ public class AllIcons {
@ScheduledForRemoval(inVersion = "2020.1")
/** 16x16 */ public static final Icon Export = load("/toolbarDecorator/export.svg");
/** @deprecated to be removed in IDEA 2021 - use AllIcons.General.FitContent */
@SuppressWarnings("unused")
@Deprecated
@ScheduledForRemoval(inVersion = "2021")
/** 16x16 */ public static final Icon FitContent = load("/general/fitContent.svg");
/** @deprecated to be removed in IDEA 2020 - use AllIcons.General.Print */
@SuppressWarnings("unused")
@Deprecated