You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by mc...@apache.org on 2022/10/13 07:28:03 UTC

[hop] branch master updated: HOP-4450 Remove disabled images to be consistent

This is an automated email from the ASF dual-hosted git repository.

mcasters pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 8a35d060f1 HOP-4450 Remove disabled images to be consistent
     new 5f1e01c48e Merge pull request #1731 from nadment/HOP-4450
8a35d060f1 is described below

commit 8a35d060f1e05c53ee87343a577b52b9eaf71dfd
Author: Nicolas Adment <39...@users.noreply.github.com>
AuthorDate: Mon Oct 10 22:03:20 2022 +0200

    HOP-4450 Remove disabled images to be consistent
---
 .../hopgui/file/pipeline/HopGuiPipelineGraph.java  | 25 ++++++-----------
 .../hopgui/file/workflow/HopGuiWorkflowGraph.java  | 25 ++++++-----------
 .../resources/ui/images/align-bottom-disabled.svg  | 32 ----------------------
 .../resources/ui/images/align-left-disabled.svg    | 27 ------------------
 .../resources/ui/images/align-right-disabled.svg   | 27 ------------------
 .../resources/ui/images/align-top-disabled.svg     | 30 --------------------
 .../ui/images/distribute-horizontally-disabled.svg | 29 --------------------
 .../ui/images/distribute-vertically-disabled.svg   | 31 ---------------------
 ui/src/main/resources/ui/images/redo-disabled.svg  | 13 ---------
 ui/src/main/resources/ui/images/undo-disabled.svg  | 13 ---------
 10 files changed, 16 insertions(+), 236 deletions(-)

diff --git a/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java b/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java
index febbae9cf0..91f316d3d4 100644
--- a/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java
+++ b/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java
@@ -3446,8 +3446,7 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
       id = TOOLBAR_ITEM_SNAP_TO_GRID,
       // label = "Snap to grid",
       toolTip = "i18n::PipelineGraph.Toolbar.SnapToGrid.Tooltip",
-      image = "ui/images/snap-to-grid.svg",
-      disabledImage = "ui/images/snap-to-grid-disabled.svg")
+      image = "ui/images/snap-to-grid.svg")
   @GuiKeyboardShortcut(control = true, key = SWT.HOME)
   @GuiOsxKeyboardShortcut(command = true, key = SWT.HOME)
   public void snapToGrid() {
@@ -3462,8 +3461,7 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
       root = GUI_PLUGIN_TOOLBAR_PARENT_ID,
       id = TOOLBAR_ITEM_ALIGN_LEFT,
       toolTip = "i18n::PipelineGraph.Toolbar.AlignLeft.Tooltip",
-      image = "ui/images/align-left.svg",
-      disabledImage = "ui/images/align-left-disabled.svg")
+      image = "ui/images/align-left.svg")
   @GuiKeyboardShortcut(control = true, key = SWT.ARROW_LEFT)
   @GuiOsxKeyboardShortcut(command = true, key = SWT.ARROW_LEFT)
   public void alignLeft() {
@@ -3474,8 +3472,7 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
       root = GUI_PLUGIN_TOOLBAR_PARENT_ID,
       id = TOOLBAR_ITEM_ALIGN_RIGHT,
       toolTip = "i18n::PipelineGraph.Toolbar.AlignRight.Tooltip",
-      image = "ui/images/align-right.svg",
-      disabledImage = "ui/images/align-right-disabled.svg")
+      image = "ui/images/align-right.svg")
   @GuiKeyboardShortcut(control = true, key = SWT.ARROW_RIGHT)
   @GuiOsxKeyboardShortcut(command = true, key = SWT.ARROW_RIGHT)
   public void alignRight() {
@@ -3486,8 +3483,7 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
       root = GUI_PLUGIN_TOOLBAR_PARENT_ID,
       id = TOOLBAR_ITEM_ALIGN_TOP,
       toolTip = "i18n::PipelineGraph.Toolbar.AlignTop.Tooltip",
-      image = "ui/images/align-top.svg",
-      disabledImage = "ui/images/align-top-disabled.svg")
+      image = "ui/images/align-top.svg")
   @GuiKeyboardShortcut(control = true, key = SWT.ARROW_UP)
   @GuiOsxKeyboardShortcut(command = true, key = SWT.ARROW_UP)
   public void alignTop() {
@@ -3499,8 +3495,7 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
       id = TOOLBAR_ITEM_ALIGN_BOTTOM,
       // label = "Bottom-align selected transforms",
       toolTip = "i18n::PipelineGraph.Toolbar.AlignBottom.Tooltip",
-      image = "ui/images/align-bottom.svg",
-      disabledImage = "ui/images/align-bottom-disabled.svg")
+      image = "ui/images/align-bottom.svg")
   @GuiKeyboardShortcut(control = true, key = SWT.ARROW_DOWN)
   @GuiOsxKeyboardShortcut(command = true, key = SWT.ARROW_DOWN)
   public void alignBottom() {
@@ -3512,8 +3507,7 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
       id = TOOLBAR_ITEM_DISTRIBUTE_HORIZONTALLY,
       // label = "Horizontally distribute selected transforms",
       toolTip = "i18n::PipelineGraph.Toolbar.DistributeHorizontal.Tooltip",
-      image = "ui/images/distribute-horizontally.svg",
-      disabledImage = "ui/images/distribute-horizontally-disabled.svg")
+      image = "ui/images/distribute-horizontally.svg")
   @GuiKeyboardShortcut(alt = true, key = SWT.ARROW_RIGHT)
   @GuiOsxKeyboardShortcut(alt = true, key = SWT.ARROW_RIGHT)
   public void distributeHorizontal() {
@@ -3525,8 +3519,7 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
       id = TOOLBAR_ITEM_DISTRIBUTE_VERTICALLY,
       // label = "Vertically distribute selected transforms",
       toolTip = "i18n::PipelineGraph.Toolbar.DistributeVertical.Tooltip",
-      image = "ui/images/distribute-vertically.svg",
-      disabledImage = "ui/images/distribute-vertically-disabled.svg")
+      image = "ui/images/distribute-vertically.svg")
   @GuiKeyboardShortcut(alt = true, key = SWT.ARROW_UP)
   @GuiOsxKeyboardShortcut(alt = true, key = SWT.ARROW_UP)
   public void distributeVertical() {
@@ -5095,7 +5088,6 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
       // label = "Undo",
       toolTip = "i18n:org.apache.hop.ui.hopgui:HopGui.Toolbar.Undo.Tooltip",
       image = "ui/images/undo.svg",
-      disabledImage = "ui/images/undo-disabled.svg",
       separator = true)
   @GuiKeyboardShortcut(control = true, key = 'z')
   @GuiOsxKeyboardShortcut(command = true, key = 'z')
@@ -5110,8 +5102,7 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
       id = TOOLBAR_ITEM_REDO_ID,
       // label = "Redo",
       toolTip = "i18n:org.apache.hop.ui.hopgui:HopGui.Toolbar.Redo.Tooltip",
-      image = "ui/images/redo.svg",
-      disabledImage = "ui/images/redo-disabled.svg")
+      image = "ui/images/redo.svg")
   @GuiKeyboardShortcut(control = true, shift = true, key = 'z')
   @GuiOsxKeyboardShortcut(command = true, shift = true, key = 'z')
   @Override
diff --git a/ui/src/main/java/org/apache/hop/ui/hopgui/file/workflow/HopGuiWorkflowGraph.java b/ui/src/main/java/org/apache/hop/ui/hopgui/file/workflow/HopGuiWorkflowGraph.java
index ab00c97139..2b5b1103ce 100644
--- a/ui/src/main/java/org/apache/hop/ui/hopgui/file/workflow/HopGuiWorkflowGraph.java
+++ b/ui/src/main/java/org/apache/hop/ui/hopgui/file/workflow/HopGuiWorkflowGraph.java
@@ -3009,8 +3009,7 @@ public class HopGuiWorkflowGraph extends HopGuiAbstractGraph
       id = TOOLBAR_ITEM_SNAP_TO_GRID,
       // label = "Snap to grid",
       toolTip = "i18n::WorkflowGraph.Toolbar.SnapToGrid.Tooltip",
-      image = "ui/images/snap-to-grid.svg",
-      disabledImage = "ui/images/snap-to-grid-disabled.svg")
+      image = "ui/images/snap-to-grid.svg")
   public void snapToGrid() {
     snapToGrid(ConstUi.GRID_SIZE);
   }
@@ -3023,8 +3022,7 @@ public class HopGuiWorkflowGraph extends HopGuiAbstractGraph
       root = GUI_PLUGIN_TOOLBAR_PARENT_ID,
       id = TOOLBAR_ITEM_ALIGN_LEFT,
       toolTip = "i18n::WorkflowGraph.Toolbar.AlignLeft.Tooltip",
-      image = "ui/images/align-left.svg",
-      disabledImage = "ui/images/align-left-disabled.svg")
+      image = "ui/images/align-left.svg")
   @GuiKeyboardShortcut(control = true, key = SWT.ARROW_LEFT)
   @GuiOsxKeyboardShortcut(command = true, key = SWT.ARROW_LEFT)
   public void alignLeft() {
@@ -3035,8 +3033,7 @@ public class HopGuiWorkflowGraph extends HopGuiAbstractGraph
       root = GUI_PLUGIN_TOOLBAR_PARENT_ID,
       id = TOOLBAR_ITEM_ALIGN_RIGHT,
       toolTip = "i18n::WorkflowGraph.Toolbar.AlignRight.Tooltip",
-      image = "ui/images/align-right.svg",
-      disabledImage = "ui/images/align-right-disabled.svg")
+      image = "ui/images/align-right.svg")
   @GuiKeyboardShortcut(control = true, key = SWT.ARROW_RIGHT)
   @GuiOsxKeyboardShortcut(command = true, key = SWT.ARROW_RIGHT)
   public void alignRight() {
@@ -3047,8 +3044,7 @@ public class HopGuiWorkflowGraph extends HopGuiAbstractGraph
       root = GUI_PLUGIN_TOOLBAR_PARENT_ID,
       id = TOOLBAR_ITEM_ALIGN_TOP,
       toolTip = "i18n::WorkflowGraph.Toolbar.AlignTop.Tooltip",
-      image = "ui/images/align-top.svg",
-      disabledImage = "ui/images/align-top-disabled.svg")
+      image = "ui/images/align-top.svg")
   @GuiKeyboardShortcut(control = true, key = SWT.ARROW_UP)
   @GuiOsxKeyboardShortcut(command = true, key = SWT.ARROW_UP)
   public void alignTop() {
@@ -3059,8 +3055,7 @@ public class HopGuiWorkflowGraph extends HopGuiAbstractGraph
       root = GUI_PLUGIN_TOOLBAR_PARENT_ID,
       id = TOOLBAR_ITEM_ALIGN_BOTTOM,
       toolTip = "i18n::WorkflowGraph.Toolbar.AlignBottom.Tooltip",
-      image = "ui/images/align-bottom.svg",
-      disabledImage = "ui/images/align-bottom-disabled.svg")
+      image = "ui/images/align-bottom.svg")
   @GuiKeyboardShortcut(control = true, key = SWT.ARROW_DOWN)
   @GuiOsxKeyboardShortcut(command = true, key = SWT.ARROW_DOWN)
   public void alignBottom() {
@@ -3071,8 +3066,7 @@ public class HopGuiWorkflowGraph extends HopGuiAbstractGraph
       root = GUI_PLUGIN_TOOLBAR_PARENT_ID,
       id = TOOLBAR_ITEM_DISTRIBUTE_HORIZONTALLY,
       toolTip = "i18n::WorkflowGraph.Toolbar.DistributeHorizontal.Tooltip",
-      image = "ui/images/distribute-horizontally.svg",
-      disabledImage = "ui/images/distribute-horizontally-disabled.svg")
+      image = "ui/images/distribute-horizontally.svg")
   @GuiKeyboardShortcut(alt = true, key = SWT.ARROW_RIGHT)
   @GuiOsxKeyboardShortcut(alt = true, key = SWT.ARROW_RIGHT)
   public void distributeHorizontal() {
@@ -3083,8 +3077,7 @@ public class HopGuiWorkflowGraph extends HopGuiAbstractGraph
       root = GUI_PLUGIN_TOOLBAR_PARENT_ID,
       id = TOOLBAR_ITEM_DISTRIBUTE_VERTICALLY,
       toolTip = "i18n::WorkflowGraph.Toolbar.DistributeVertical.Tooltip",
-      image = "ui/images/distribute-vertically.svg",
-      disabledImage = "ui/images/distribute-vertically-disabled.svg")
+      image = "ui/images/distribute-vertically.svg")
   @GuiKeyboardShortcut(alt = true, key = SWT.ARROW_UP)
   @GuiOsxKeyboardShortcut(alt = true, key = SWT.ARROW_UP)
   public void distributeVertical() {
@@ -3175,7 +3168,6 @@ public class HopGuiWorkflowGraph extends HopGuiAbstractGraph
       // label = "Undo",
       toolTip = "i18n:org.apache.hop.ui.hopgui:HopGui.Toolbar.Undo.Tooltip",
       image = "ui/images/undo.svg",
-      disabledImage = "ui/images/undo-disabled.svg",
       separator = true)
   @GuiKeyboardShortcut(control = true, key = 'z')
   @Override
@@ -3189,8 +3181,7 @@ public class HopGuiWorkflowGraph extends HopGuiAbstractGraph
       id = TOOLBAR_ITEM_REDO_ID,
       // label = "Redo",
       toolTip = "i18n:org.apache.hop.ui.hopgui:HopGui.Toolbar.Redo.Tooltip",
-      image = "ui/images/redo.svg",
-      disabledImage = "ui/images/redo-disabled.svg")
+      image = "ui/images/redo.svg")
   @GuiKeyboardShortcut(control = true, shift = true, key = 'z')
   @Override
   public void redo() {
diff --git a/ui/src/main/resources/ui/images/align-bottom-disabled.svg b/ui/src/main/resources/ui/images/align-bottom-disabled.svg
deleted file mode 100644
index e524aecfca..0000000000
--- a/ui/src/main/resources/ui/images/align-bottom-disabled.svg
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-        xmlns="http://www.w3.org/2000/svg"
-        width="32"
-        height="32"
-        viewBox="0 0 8.4666659 8.4666659"
-        version="1.1"
->
-    <g transform="translate(0,-288.53334)">
-        <rect
-                style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359671;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-                width="1.9361738"
-                height="2.0744655"
-                x="-295.66226"
-                y="5.0174847"
-                transform="rotate(-90)"/>
-        <rect
-                style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.17156053;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-                width="0.47103932"
-                height="7.6911559"
-                x="-296.68744"
-                y="0.44491023"
-                transform="rotate(-90)"/>
-        <rect
-                style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359672;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-                width="1.9361739"
-                height="2.0744655"
-                x="-295.66223"
-                y="1.8734894"
-                transform="rotate(-90)"/>
-    </g>
-</svg>
diff --git a/ui/src/main/resources/ui/images/align-left-disabled.svg b/ui/src/main/resources/ui/images/align-left-disabled.svg
deleted file mode 100644
index 3340bb597a..0000000000
--- a/ui/src/main/resources/ui/images/align-left-disabled.svg
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-        xmlns="http://www.w3.org/2000/svg"
-        version="1.1"
-        viewBox="0 0 8.4666659 8.4666659"
-        height="32"
-        width="32"
->
-    <rect
-            style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359671;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-            width="1.9361738"
-            height="2.0744655"
-            x="2.0435982"
-            y="1.1921849"/>
-    <rect
-            style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.17156053;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-            width="0.47103932"
-            height="7.6911559"
-            x="0.9552325"
-            y="0.40620467"/>
-    <rect
-            style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359672;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-            width="1.9361739"
-            height="2.0744655"
-            x="2.0749466"
-            y="4.934525"/>
-</svg>
diff --git a/ui/src/main/resources/ui/images/align-right-disabled.svg b/ui/src/main/resources/ui/images/align-right-disabled.svg
deleted file mode 100644
index 40d139158e..0000000000
--- a/ui/src/main/resources/ui/images/align-right-disabled.svg
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-        xmlns="http://www.w3.org/2000/svg"
-        version="1.1"
-        viewBox="0 0 8.4666659 8.4666659"
-        height="32"
-        width="32"
->
-    <rect
-            style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359671;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-            width="1.9361738"
-            height="2.0744655"
-            x="5.2504497"
-            y="1.0653249"/>
-    <rect
-            style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.17156053;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-            width="0.47103932"
-            height="7.6911559"
-            x="7.6480131"
-            y="0.31993774"/>
-    <rect
-            style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359672;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-            width="1.9361739"
-            height="2.0744655"
-            x="5.2817984"
-            y="4.8076649"/>
-</svg>
diff --git a/ui/src/main/resources/ui/images/align-top-disabled.svg b/ui/src/main/resources/ui/images/align-top-disabled.svg
deleted file mode 100644
index 89dd65a586..0000000000
--- a/ui/src/main/resources/ui/images/align-top-disabled.svg
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-        xmlns="http://www.w3.org/2000/svg"
-        version="1.1"
-        viewBox="0 0 8.4666659 8.4666659"
-        height="32"
-        width="32"
->
-    <rect
-            style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359671;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-            width="1.9361738"
-            height="2.0744655"
-            x="-3.3298192"
-            y="4.7906747"
-            transform="rotate(-90)"/>
-    <rect
-            style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.17156053;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-            width="0.47103932"
-            height="7.6911559"
-            x="-0.89616442"
-            y="0.42600939"
-            transform="rotate(-90)"/>
-    <rect
-            style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359672;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-            width="1.9361739"
-            height="2.0744655"
-            x="-3.3297887"
-            y="1.6466794"
-            transform="rotate(-90)"/>
-</svg>
diff --git a/ui/src/main/resources/ui/images/distribute-horizontally-disabled.svg b/ui/src/main/resources/ui/images/distribute-horizontally-disabled.svg
deleted file mode 100644
index b85272c68c..0000000000
--- a/ui/src/main/resources/ui/images/distribute-horizontally-disabled.svg
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-        xmlns="http://www.w3.org/2000/svg"
-        width="32"
-        height="32"
-        viewBox="0 0 8.4666659 8.4666659"
-        version="1.1"
->
-    <g transform="translate(0,-288.53334)">
-        <rect
-                style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359672;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-                width="1.9361739"
-                height="2.0744655"
-                x="3.3213022"
-                y="291.66656"/>
-        <rect
-                style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359674;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-                width="1.936174"
-                height="2.0744655"
-                x="0.65159398"
-                y="291.65063"/>
-        <rect
-                style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359674;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-                width="1.936174"
-                height="2.0744655"
-                x="5.9013805"
-                y="291.6412"/>
-    </g>
-</svg>
diff --git a/ui/src/main/resources/ui/images/distribute-vertically-disabled.svg b/ui/src/main/resources/ui/images/distribute-vertically-disabled.svg
deleted file mode 100644
index b8b60995f5..0000000000
--- a/ui/src/main/resources/ui/images/distribute-vertically-disabled.svg
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-        xmlns="http://www.w3.org/2000/svg"
-        width="32"
-        height="32"
-        viewBox="0 0 8.4666659 8.4666659"
-        version="1.1">
-    <g transform="translate(0,-288.53334)">
-        <rect
-                style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359671;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-                width="1.9361738"
-                height="2.0744655"
-                x="-293.621"
-                y="3.0092714"
-                transform="rotate(-90)"/>
-        <rect
-                style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359672;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-                width="1.9361739"
-                height="2.0744655"
-                x="-296.29071"
-                y="2.9933634"
-                transform="rotate(-90)"/>
-        <rect
-                style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#7f7f7f;stroke-width:0.19359672;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
-                width="1.9361739"
-                height="2.0744655"
-                x="-291.04092"
-                y="2.9839184"
-                transform="rotate(-90)"/>
-    </g>
-</svg>
diff --git a/ui/src/main/resources/ui/images/redo-disabled.svg b/ui/src/main/resources/ui/images/redo-disabled.svg
deleted file mode 100644
index 5ec619ee3b..0000000000
--- a/ui/src/main/resources/ui/images/redo-disabled.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-        xmlns="http://www.w3.org/2000/svg"
-        version="1.1"
-        viewBox="0 0 22 22">
-    rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-    />
-    <path
-            style="fill:#b3b3b3"
-            fill="#4d4d4d"
-            transform="matrix(-.04122 0 0 .04122 21 .998)"
-            d="m257.75 113.71c-74.42 0-140.28 35.892-181.77 91.16l-75.978-75.995v242.61h242.61l-82.54-82.53c21.931-66.52 84.47-114.58 158.33-114.58 92.16 0 166.79 74.69 166.79 166.8.0001-125.63-101.82-227.45-227.43-227.45"/>
-</svg>
diff --git a/ui/src/main/resources/ui/images/undo-disabled.svg b/ui/src/main/resources/ui/images/undo-disabled.svg
deleted file mode 100644
index 7324196946..0000000000
--- a/ui/src/main/resources/ui/images/undo-disabled.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-        xmlns="http://www.w3.org/2000/svg"
-        version="1.1"
-        viewBox="0 0 22 22">
-    rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-    />
-    <path
-            style="fill:#b3b3b3"
-            fill="#4d4d4d"
-            transform="matrix(.04122 0 0 .04122 1 .998)"
-            d="m257.75 113.71c-74.42 0-140.28 35.892-181.77 91.16l-75.978-75.995v242.61h242.61l-82.54-82.53c21.931-66.52 84.47-114.58 158.33-114.58 92.16 0 166.79 74.69 166.79 166.8.0001-125.63-101.82-227.45-227.43-227.45"/>
-</svg>