mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
Deprecate AllIcons.Graph.FitContent duplicated by AllIcons.General.FitContent
GitOrigin-RevId: 6add5e7aa7a90c14bc39a31f7b9b63ae611bee97
This commit is contained in:
committed by
intellij-monorepo-bot
parent
aefdbada51
commit
02c8545bfe
@@ -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"
|
||||
|
||||
|
Before Width: | Height: | Size: 491 B After Width: | Height: | Size: 491 B |
|
Before Width: | Height: | Size: 491 B After Width: | Height: | Size: 491 B |
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user