Browse Source

Fix two deprecated icons

Jaime van Kessel 3 years ago
parent
commit
d24b28c9b9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      resources/qml/Widgets/MenuItem.qml

+ 2 - 2
resources/qml/Widgets/MenuItem.qml

@@ -24,7 +24,7 @@ MenuItem
         anchors.verticalCenter: parent.verticalCenter
         anchors.right: parent.right
         anchors.rightMargin: UM.Theme.getSize("default_margin").width
-        source: UM.Theme.getIcon("arrow_right")
+        source: UM.Theme.getIcon("ChevronSingleRight")
         color: UM.Theme.getColor("setting_control_text")
     }
 
@@ -37,7 +37,7 @@ MenuItem
         anchors.verticalCenter: parent.verticalCenter
         anchors.left: parent.left
         anchors.leftMargin: UM.Theme.getSize("default_margin").width
-        source: UM.Theme.getIcon("check")
+        source: UM.Theme.getIcon("Check")
         color: UM.Theme.getColor("setting_control_text")
     }