diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml
index 1fd20a3534..450f01fbd5 100644
--- a/plugins/3MFReader/WorkspaceDialog.qml
+++ b/plugins/3MFReader/WorkspaceDialog.qml
@@ -419,7 +419,7 @@ UM.Dialog
width: warningLabel.height
height: width
- source: UM.Theme.getIcon("notice")
+ source: UM.Theme.getIcon("Information")
color: palette.text
}
diff --git a/plugins/CuraDrive/src/qml/components/BackupListFooter.qml b/plugins/CuraDrive/src/qml/components/BackupListFooter.qml
index 8decdc5c27..15af7521ed 100644
--- a/plugins/CuraDrive/src/qml/components/BackupListFooter.qml
+++ b/plugins/CuraDrive/src/qml/components/BackupListFooter.qml
@@ -20,7 +20,7 @@ RowLayout
{
id: infoButton
text: catalog.i18nc("@button", "Want more?")
- iconSource: UM.Theme.getIcon("info")
+ iconSource: UM.Theme.getIcon("Information")
onClicked: Qt.openUrlExternally("https://goo.gl/forms/QACEP8pP3RV60QYG2")
visible: backupListFooter.showInfoButton
}
@@ -29,7 +29,7 @@ RowLayout
{
id: createBackupButton
text: catalog.i18nc("@button", "Backup Now")
- iconSource: UM.Theme.getIcon("plus")
+ iconSource: UM.Theme.getIcon("Plus")
enabled: !CuraDrive.isCreatingBackup && !CuraDrive.isRestoringBackup
onClicked: CuraDrive.createBackup()
busy: CuraDrive.isCreatingBackup
diff --git a/plugins/CuraDrive/src/qml/components/BackupListItem.qml b/plugins/CuraDrive/src/qml/components/BackupListItem.qml
index 7b539b03b9..e35c8351b7 100644
--- a/plugins/CuraDrive/src/qml/components/BackupListItem.qml
+++ b/plugins/CuraDrive/src/qml/components/BackupListItem.qml
@@ -38,7 +38,7 @@ Item
height: UM.Theme.getSize("section_icon").height
color: UM.Theme.getColor("small_button_text")
hoverColor: UM.Theme.getColor("small_button_text_hover")
- iconSource: UM.Theme.getIcon("info")
+ iconSource: UM.Theme.getIcon("Information")
onClicked: backupListItem.showDetails = !backupListItem.showDetails
}
@@ -80,7 +80,7 @@ Item
height: UM.Theme.getSize("message_close").height
color: UM.Theme.getColor("small_button_text")
hoverColor: UM.Theme.getColor("small_button_text_hover")
- iconSource: UM.Theme.getIcon("cross1")
+ iconSource: UM.Theme.getIcon("Cancel")
onClicked: confirmDeleteDialog.visible = true
}
}
diff --git a/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml b/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml
index 4da15c6f16..a4f30edd19 100644
--- a/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml
+++ b/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2018 Ultimaker B.V.
+// Copyright (c) 2021 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.
import QtQuick 2.7
@@ -17,7 +17,7 @@ ColumnLayout
// Cura version
BackupListItemDetailsRow
{
- iconSource: UM.Theme.getIcon("application")
+ iconSource: UM.Theme.getIcon("UltimakerCura")
label: catalog.i18nc("@backuplist:label", "Cura Version")
value: backupDetailsData.metadata.cura_release
}
@@ -25,7 +25,7 @@ ColumnLayout
// Machine count.
BackupListItemDetailsRow
{
- iconSource: UM.Theme.getIcon("printer_single")
+ iconSource: UM.Theme.getIcon("Printer")
label: catalog.i18nc("@backuplist:label", "Machines")
value: backupDetailsData.metadata.machine_count
}
@@ -33,7 +33,7 @@ ColumnLayout
// Material count
BackupListItemDetailsRow
{
- iconSource: UM.Theme.getIcon("category_material")
+ iconSource: UM.Theme.getIcon("Spool")
label: catalog.i18nc("@backuplist:label", "Materials")
value: backupDetailsData.metadata.material_count
}
@@ -41,7 +41,7 @@ ColumnLayout
// Profile count.
BackupListItemDetailsRow
{
- iconSource: UM.Theme.getIcon("settings")
+ iconSource: UM.Theme.getIcon("Sliders")
label: catalog.i18nc("@backuplist:label", "Profiles")
value: backupDetailsData.metadata.profile_count
}
@@ -49,7 +49,7 @@ ColumnLayout
// Plugin count.
BackupListItemDetailsRow
{
- iconSource: UM.Theme.getIcon("plugin")
+ iconSource: UM.Theme.getIcon("Plugin")
label: catalog.i18nc("@backuplist:label", "Plugins")
value: backupDetailsData.metadata.plugin_count
}
diff --git a/plugins/MonitorStage/MonitorMain.qml b/plugins/MonitorStage/MonitorMain.qml
index d5fdb66c89..cb16b91cb8 100644
--- a/plugins/MonitorStage/MonitorMain.qml
+++ b/plugins/MonitorStage/MonitorMain.qml
@@ -137,7 +137,7 @@ Rectangle
id: externalLinkIcon
anchors.verticalCenter: parent.verticalCenter
color: UM.Theme.getColor("text_link")
- source: UM.Theme.getIcon("external_link")
+ source: UM.Theme.getIcon("LinkExternal")
width: UM.Theme.getSize("monitor_external_link_icon").width
height: UM.Theme.getSize("monitor_external_link_icon").height
}
diff --git a/plugins/PerObjectSettingsTool/PerObjectCategory.qml b/plugins/PerObjectSettingsTool/PerObjectCategory.qml
index 4ca12f657e..58192f0acd 100644
--- a/plugins/PerObjectSettingsTool/PerObjectCategory.qml
+++ b/plugins/PerObjectSettingsTool/PerObjectCategory.qml
@@ -24,7 +24,7 @@ Button {
anchors.verticalCenter: parent.verticalCenter
height: (label.height / 2) | 0
width: height
- source: control.checked ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_right");
+ source: control.checked ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight");
color: control.hovered ? palette.highlight : palette.buttonText
}
UM.RecolorImage
diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml
index 7ab4bdb1a1..e96337e6bb 100644
--- a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml
+++ b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml
@@ -80,7 +80,7 @@ Item
{
id: normalButton
text: catalog.i18nc("@label", "Normal model")
- iconSource: UM.Theme.getIcon("pos_normal");
+ iconSource: UM.Theme.getIcon("Infill0");
property bool needBorder: true
checkable: true
onClicked: setMeshType(normalMeshType);
@@ -92,7 +92,7 @@ Item
{
id: supportMeshButton
text: catalog.i18nc("@label", "Print as support")
- iconSource: UM.Theme.getIcon("pos_print_as_support");
+ iconSource: UM.Theme.getIcon("MeshTypeSupport");
property bool needBorder: true
checkable:true
onClicked: setMeshType(supportMeshType)
@@ -104,7 +104,7 @@ Item
{
id: overlapMeshButton
text: catalog.i18nc("@label", "Modify settings for overlaps")
- iconSource: UM.Theme.getIcon("pos_modify_overlaps");
+ iconSource: UM.Theme.getIcon("MeshTypeIntersect");
property bool needBorder: true
checkable:true
onClicked: setMeshType(infillMeshType)
@@ -116,7 +116,7 @@ Item
{
id: antiOverhangMeshButton
text: catalog.i18nc("@label", "Don't support overlaps")
- iconSource: UM.Theme.getIcon("pos_modify_dont_support_overlap");
+ iconSource: UM.Theme.getIcon("BlockSupportOverlaps");
property bool needBorder: true
checkable: true
onClicked: setMeshType(antiOverhangMeshType)
@@ -306,7 +306,7 @@ Item
height: width
sourceSize.height: width
color: control.hovered ? UM.Theme.getColor("setting_control_button_hover") : UM.Theme.getColor("setting_control_button")
- source: UM.Theme.getIcon("minus")
+ source: UM.Theme.getIcon("Minus")
}
}
}
diff --git a/plugins/PerObjectSettingsTool/__init__.py b/plugins/PerObjectSettingsTool/__init__.py
index acfc35815e..d3c6d236ef 100644
--- a/plugins/PerObjectSettingsTool/__init__.py
+++ b/plugins/PerObjectSettingsTool/__init__.py
@@ -13,7 +13,7 @@ def getMetaData():
"tool": {
"name": i18n_catalog.i18nc("@label", "Per Model Settings"),
"description": i18n_catalog.i18nc("@info:tooltip", "Configure Per Model Settings"),
- "icon": "tool_icon.svg",
+ "icon": "MeshType",
"tool_panel": "PerObjectSettingsPanel.qml",
"weight": 3
},
diff --git a/plugins/PerObjectSettingsTool/tool_icon.svg b/plugins/PerObjectSettingsTool/tool_icon.svg
deleted file mode 100644
index 41e49cae07..0000000000
--- a/plugins/PerObjectSettingsTool/tool_icon.svg
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
\ No newline at end of file
diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml
index 2b3a141aa0..7397ec8196 100644
--- a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml
+++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml
@@ -154,7 +154,7 @@ UM.Dialog
height: Math.round(control.height / 2.7)
sourceSize.height: width
color: palette.text
- source: UM.Theme.getIcon("cross1")
+ source: UM.Theme.getIcon("Cancel")
}
}
}
@@ -188,7 +188,7 @@ UM.Dialog
height: Math.round(control.height / 2.5)
sourceSize.height: width
color: control.enabled ? palette.text : disabledPalette.text
- source: UM.Theme.getIcon("arrow_bottom")
+ source: UM.Theme.getIcon("ChevronSingleDown")
}
}
}
@@ -222,7 +222,7 @@ UM.Dialog
height: Math.round(control.height / 2.5)
sourceSize.height: width
color: control.enabled ? palette.text : disabledPalette.text
- source: UM.Theme.getIcon("arrow_top")
+ source: UM.Theme.getIcon("ChevronSingleUp")
}
}
}
@@ -517,7 +517,7 @@ UM.Dialog
}
toolTipContentAlignment: Cura.ToolTip.ContentAlignment.AlignLeft
onClicked: dialog.show()
- iconSource: "postprocessing.svg"
+ iconSource: "Script.svg"
fixedWidthMode: false
}
@@ -536,4 +536,4 @@ UM.Dialog
labelText: activeScriptsList.count
}
}
-}
\ No newline at end of file
+}
diff --git a/plugins/PostProcessingPlugin/Script.svg b/plugins/PostProcessingPlugin/Script.svg
new file mode 100755
index 0000000000..6bf481deef
--- /dev/null
+++ b/plugins/PostProcessingPlugin/Script.svg
@@ -0,0 +1,10 @@
+
+
diff --git a/plugins/PostProcessingPlugin/postprocessing.svg b/plugins/PostProcessingPlugin/postprocessing.svg
deleted file mode 100644
index f55face4a9..0000000000
--- a/plugins/PostProcessingPlugin/postprocessing.svg
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/plugins/PrepareStage/PrepareMenu.qml b/plugins/PrepareStage/PrepareMenu.qml
index 87d7c5f35c..93ecb49677 100644
--- a/plugins/PrepareStage/PrepareMenu.qml
+++ b/plugins/PrepareStage/PrepareMenu.qml
@@ -106,7 +106,7 @@ Item
{
id: buttonIcon
anchors.centerIn: parent
- source: UM.Theme.getIcon("load")
+ source: UM.Theme.getIcon("Folder")
width: UM.Theme.getSize("button_icon").width
height: UM.Theme.getSize("button_icon").height
color: UM.Theme.getColor("icon")
diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml
index 00497a57c8..9232516673 100644
--- a/plugins/SimulationView/SimulationViewMainComponent.qml
+++ b/plugins/SimulationView/SimulationViewMainComponent.qml
@@ -78,7 +78,7 @@ Item
UM.SimpleButton
{
id: playButton
- iconSource: !isSimulationPlaying ? "./resources/simulation_resume.svg": "./resources/simulation_pause.svg"
+ iconSource: !isSimulationPlaying ? "./resources/Play.svg": "./resources/Pause.svg"
width: UM.Theme.getSize("small_button").width
height: UM.Theme.getSize("small_button").height
hoverColor: UM.Theme.getColor("slider_handle_active")
@@ -241,4 +241,4 @@ Item
layerSlider.setUpperValue(UM.SimulationView.currentLayer)
}
}
-}
\ No newline at end of file
+}
diff --git a/plugins/SimulationView/SimulationViewMenuComponent.qml b/plugins/SimulationView/SimulationViewMenuComponent.qml
index a9108c9d42..86e686e0fc 100644
--- a/plugins/SimulationView/SimulationViewMenuComponent.qml
+++ b/plugins/SimulationView/SimulationViewMenuComponent.qml
@@ -211,7 +211,7 @@ Cura.ExpandableComponent
anchors.right: extrudersModelCheckBox.right
width: UM.Theme.getSize("layerview_legend_size").width
height: UM.Theme.getSize("layerview_legend_size").height
- source: UM.Theme.getIcon("extruder_button")
+ source: UM.Theme.getIcon("Extruder", "medium")
color: model.color
}
diff --git a/plugins/SimulationView/resources/Pause.svg b/plugins/SimulationView/resources/Pause.svg
new file mode 100755
index 0000000000..1e155a783f
--- /dev/null
+++ b/plugins/SimulationView/resources/Pause.svg
@@ -0,0 +1,5 @@
+
+
diff --git a/plugins/SimulationView/resources/Play.svg b/plugins/SimulationView/resources/Play.svg
new file mode 100755
index 0000000000..36bbe99c10
--- /dev/null
+++ b/plugins/SimulationView/resources/Play.svg
@@ -0,0 +1,6 @@
+
+
diff --git a/plugins/SimulationView/resources/simulation_pause.svg b/plugins/SimulationView/resources/simulation_pause.svg
deleted file mode 100644
index 652434bd44..0000000000
--- a/plugins/SimulationView/resources/simulation_pause.svg
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
diff --git a/plugins/SimulationView/resources/simulation_resume.svg b/plugins/SimulationView/resources/simulation_resume.svg
deleted file mode 100644
index 912a2ac418..0000000000
--- a/plugins/SimulationView/resources/simulation_resume.svg
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
diff --git a/plugins/SupportEraser/__init__.py b/plugins/SupportEraser/__init__.py
index 2ed7521808..30b6fe4a52 100644
--- a/plugins/SupportEraser/__init__.py
+++ b/plugins/SupportEraser/__init__.py
@@ -11,7 +11,7 @@ def getMetaData():
"tool": {
"name": i18n_catalog.i18nc("@label", "Support Blocker"),
"description": i18n_catalog.i18nc("@info:tooltip", "Create a volume in which supports are not printed."),
- "icon": "tool_icon.svg",
+ "icon": "SupportBlocker",
"weight": 4
}
}
diff --git a/plugins/SupportEraser/tool_icon.svg b/plugins/SupportEraser/tool_icon.svg
deleted file mode 100644
index fee69e0715..0000000000
--- a/plugins/SupportEraser/tool_icon.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
\ No newline at end of file
diff --git a/plugins/Toolbox/resources/images/Shop.svg b/plugins/Toolbox/resources/images/Shop.svg
new file mode 100755
index 0000000000..a93d6d4cfb
--- /dev/null
+++ b/plugins/Toolbox/resources/images/Shop.svg
@@ -0,0 +1,7 @@
+
+
diff --git a/plugins/Toolbox/resources/images/shop.svg b/plugins/Toolbox/resources/images/shop.svg
deleted file mode 100644
index 64862834b0..0000000000
--- a/plugins/Toolbox/resources/images/shop.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-
diff --git a/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml b/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml
index 5514e555eb..9874a977f5 100644
--- a/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml
+++ b/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml
@@ -41,7 +41,7 @@ Item
height: height
}
color: button.enabled ? (button.hovered ? UM.Theme.getColor("primary") : UM.Theme.getColor("text")) : UM.Theme.getColor("text_inactive")
- source: UM.Theme.getIcon("arrow_left")
+ source: UM.Theme.getIcon("ChevronSingleLeft")
}
width: UM.Theme.getSize("toolbox_back_button").width
height: UM.Theme.getSize("toolbox_back_button").height
diff --git a/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml b/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml
index 0c57e5fc5c..1bdfa80b79 100644
--- a/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml
+++ b/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml
@@ -95,7 +95,7 @@ Item
UM.RecolorImage
{
id: cloudMarketplaceButton
- source: "../../images/shop.svg"
+ source: "../../images/Shop.svg"
color: UM.Theme.getColor(webMarketplaceButtonTooltipArea.containsMouse ? "primary" : "text")
height: parent.height / 2
width: height
diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorBuildplateConfiguration.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorBuildplateConfiguration.qml
index 2034c23abe..f3002fd25b 100644
--- a/plugins/UM3NetworkPrinting/resources/qml/MonitorBuildplateConfiguration.qml
+++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorBuildplateConfiguration.qml
@@ -51,7 +51,7 @@ Item
anchors.centerIn: parent
color: UM.Theme.getColor("monitor_icon_primary")
height: parent.height
- source: "../svg/icons/buildplate.svg"
+ source: "../svg/icons/Buildplate.svg"
width: height
visible: buildplate
}
diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorCarousel.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorCarousel.qml
index 56e39bd477..a42dc0d12a 100644
--- a/plugins/UM3NetworkPrinting/resources/qml/MonitorCarousel.qml
+++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorCarousel.qml
@@ -98,7 +98,7 @@ Item
sourceSize.width: width // TODO: Theme!
sourceSize.height: width // TODO: Theme!
color: UM.Theme.getColor("text")
- source: UM.Theme.getIcon("arrow_left")
+ source: UM.Theme.getIcon("ChevronSingleLeft")
}
}
}
@@ -177,7 +177,7 @@ Item
sourceSize.width: width // TODO: Theme!
sourceSize.height: width // TODO: Theme!
color: UM.Theme.getColor("text")
- source: UM.Theme.getIcon("arrow_right")
+ source: UM.Theme.getIcon("ChevronSingleRight")
}
}
}
diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml
index 8c6f28d3e1..79bc0ec25b 100644
--- a/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml
+++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml
@@ -22,7 +22,7 @@ Item
property int size: 32 * screenScaleFactor // TODO: Theme!
// THe extruder icon source; NOTE: This shouldn't need to be changed
- property string iconSource: "../svg/icons/extruder.svg"
+ property string iconSource: "../svg/icons/Extruder.svg"
height: size
width: size
diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobPreview.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobPreview.qml
index 7492b4e8e4..cf2239201f 100644
--- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobPreview.qml
+++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobPreview.qml
@@ -71,20 +71,20 @@ Item
}
if (printJob.configurationChanges.length > 0)
{
- return "../svg/warning-icon.svg"
+ return "../svg/Warning.svg"
}
switch(printJob.state)
{
case "error":
- return "../svg/aborted-icon.svg"
+ return "../svg/CancelCircle.svg"
case "wait_cleanup":
- return printJob.timeTotal > printJob.timeElapsed ? "../svg/aborted-icon.svg" : ""
+ return printJob.timeTotal > printJob.timeElapsed ? "../svg/CancelCircle.svg" : ""
case "pausing":
- return "../svg/paused-icon.svg"
+ return "../svg/PauseCircle.svg"
case "paused":
- return "../svg/paused-icon.svg"
+ return "../svg/PauseCircle.svg"
case "resuming":
- return "../svg/paused-icon.svg"
+ return "../svg/PauseCircle.svg"
default:
return ""
}
diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml
index 05ad8d9929..7dbb78e8fb 100644
--- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml
+++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml
@@ -164,7 +164,7 @@ Item
verticalCenter: managePrinterText.verticalCenter
}
color: UM.Theme.getColor("text_link")
- source: UM.Theme.getIcon("external_link")
+ source: UM.Theme.getIcon("LinkExternal")
width: 12 * screenScaleFactor
height: 12 * screenScaleFactor
}
@@ -265,7 +265,7 @@ Item
bottom: parent.bottom
bottomMargin: 20 * screenScaleFactor // TODO: Theme!
}
- iconSource: "../svg/icons/camera.svg"
+ iconSource: "../svg/icons/CameraPhoto.svg"
enabled: !cloudConnection
visible: printer
}
diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml
index 9f159102e2..1b94625bf0 100644
--- a/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml
+++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml
@@ -48,7 +48,7 @@ Item
id: externalLinkIcon
anchors.verticalCenter: manageQueueLabel.verticalCenter
color: UM.Theme.getColor("text_link")
- source: UM.Theme.getIcon("external_link")
+ source: UM.Theme.getIcon("LinkExternal")
width: 16 * screenScaleFactor // TODO: Theme! (Y U NO USE 18 LIKE ALL OTHER ICONS?!)
height: 16 * screenScaleFactor // TODO: Theme! (Y U NO USE 18 LIKE ALL OTHER ICONS?!)
}
diff --git a/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml b/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml
index cfbb30fdfb..291e2a14f5 100644
--- a/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml
+++ b/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml
@@ -30,7 +30,7 @@ Item {
top: cameraImage.top
topMargin: UM.Theme.getSize("default_margin").height
}
- iconSource: UM.Theme.getIcon("cross1");
+ iconSource: UM.Theme.getIcon("Cancel");
z: 999;
}
diff --git a/plugins/UM3NetworkPrinting/resources/svg/Camera.svg b/plugins/UM3NetworkPrinting/resources/svg/Camera.svg
new file mode 100755
index 0000000000..ae6a67fc0b
--- /dev/null
+++ b/plugins/UM3NetworkPrinting/resources/svg/Camera.svg
@@ -0,0 +1,6 @@
+
+
diff --git a/plugins/UM3NetworkPrinting/resources/svg/CancelCircle.svg b/plugins/UM3NetworkPrinting/resources/svg/CancelCircle.svg
new file mode 100755
index 0000000000..dc541f2d54
--- /dev/null
+++ b/plugins/UM3NetworkPrinting/resources/svg/CancelCircle.svg
@@ -0,0 +1,7 @@
+
+
diff --git a/plugins/UM3NetworkPrinting/resources/svg/Check.svg b/plugins/UM3NetworkPrinting/resources/svg/Check.svg
new file mode 100755
index 0000000000..17e290a38b
--- /dev/null
+++ b/plugins/UM3NetworkPrinting/resources/svg/Check.svg
@@ -0,0 +1,5 @@
+
+
diff --git a/plugins/UM3NetworkPrinting/resources/svg/CheckCircle.svg b/plugins/UM3NetworkPrinting/resources/svg/CheckCircle.svg
new file mode 100755
index 0000000000..aac1a50b95
--- /dev/null
+++ b/plugins/UM3NetworkPrinting/resources/svg/CheckCircle.svg
@@ -0,0 +1,9 @@
+
+
diff --git a/plugins/UM3NetworkPrinting/resources/svg/PauseCircle.svg b/plugins/UM3NetworkPrinting/resources/svg/PauseCircle.svg
new file mode 100755
index 0000000000..b010624979
--- /dev/null
+++ b/plugins/UM3NetworkPrinting/resources/svg/PauseCircle.svg
@@ -0,0 +1,10 @@
+
+
diff --git a/plugins/UM3NetworkPrinting/resources/svg/Prohibition.svg b/plugins/UM3NetworkPrinting/resources/svg/Prohibition.svg
new file mode 100755
index 0000000000..d4dc842551
--- /dev/null
+++ b/plugins/UM3NetworkPrinting/resources/svg/Prohibition.svg
@@ -0,0 +1,7 @@
+
+
diff --git a/plugins/UM3NetworkPrinting/resources/svg/Warning.svg b/plugins/UM3NetworkPrinting/resources/svg/Warning.svg
new file mode 100755
index 0000000000..6105030fe6
--- /dev/null
+++ b/plugins/UM3NetworkPrinting/resources/svg/Warning.svg
@@ -0,0 +1,6 @@
+
+
diff --git a/plugins/UM3NetworkPrinting/resources/svg/aborted-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/aborted-icon.svg
deleted file mode 100644
index 7ef82c8911..0000000000
--- a/plugins/UM3NetworkPrinting/resources/svg/aborted-icon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/plugins/UM3NetworkPrinting/resources/svg/action-required-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/action-required-icon.svg
deleted file mode 100644
index e7768849c6..0000000000
--- a/plugins/UM3NetworkPrinting/resources/svg/action-required-icon.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
diff --git a/plugins/UM3NetworkPrinting/resources/svg/approved-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/approved-icon.svg
deleted file mode 100644
index 671957d709..0000000000
--- a/plugins/UM3NetworkPrinting/resources/svg/approved-icon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/plugins/UM3NetworkPrinting/resources/svg/blocked-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/blocked-icon.svg
deleted file mode 100644
index eba3efdab9..0000000000
--- a/plugins/UM3NetworkPrinting/resources/svg/blocked-icon.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
diff --git a/plugins/UM3NetworkPrinting/resources/svg/camera-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/camera-icon.svg
deleted file mode 100644
index 66bed04508..0000000000
--- a/plugins/UM3NetworkPrinting/resources/svg/camera-icon.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/plugins/UM3NetworkPrinting/resources/svg/checkmark-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/checkmark-icon.svg
deleted file mode 100644
index 9d4507e551..0000000000
--- a/plugins/UM3NetworkPrinting/resources/svg/checkmark-icon.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-
diff --git a/resources/themes/cura-light/icons/package.svg b/plugins/UM3NetworkPrinting/resources/svg/icons/Buildplate.svg
old mode 100644
new mode 100755
similarity index 50%
rename from resources/themes/cura-light/icons/package.svg
rename to plugins/UM3NetworkPrinting/resources/svg/icons/Buildplate.svg
index 4f74a43c42..79fdc06c07
--- a/resources/themes/cura-light/icons/package.svg
+++ b/plugins/UM3NetworkPrinting/resources/svg/icons/Buildplate.svg
@@ -1,7 +1,7 @@
diff --git a/plugins/UM3NetworkPrinting/resources/svg/icons/CameraPhoto.svg b/plugins/UM3NetworkPrinting/resources/svg/icons/CameraPhoto.svg
new file mode 100755
index 0000000000..01f9c67c4e
--- /dev/null
+++ b/plugins/UM3NetworkPrinting/resources/svg/icons/CameraPhoto.svg
@@ -0,0 +1,8 @@
+
+
+
diff --git a/plugins/UM3NetworkPrinting/resources/svg/icons/Extruder.svg b/plugins/UM3NetworkPrinting/resources/svg/icons/Extruder.svg
new file mode 100644
index 0000000000..3a2cf1147b
--- /dev/null
+++ b/plugins/UM3NetworkPrinting/resources/svg/icons/Extruder.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/plugins/UM3NetworkPrinting/resources/svg/icons/buildplate.svg b/plugins/UM3NetworkPrinting/resources/svg/icons/buildplate.svg
deleted file mode 100644
index bcb278a8ca..0000000000
--- a/plugins/UM3NetworkPrinting/resources/svg/icons/buildplate.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
\ No newline at end of file
diff --git a/plugins/UM3NetworkPrinting/resources/svg/icons/camera.svg b/plugins/UM3NetworkPrinting/resources/svg/icons/camera.svg
deleted file mode 100644
index 2eaebb812d..0000000000
--- a/plugins/UM3NetworkPrinting/resources/svg/icons/camera.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
\ No newline at end of file
diff --git a/plugins/UM3NetworkPrinting/resources/svg/icons/extruder.svg b/plugins/UM3NetworkPrinting/resources/svg/icons/extruder.svg
deleted file mode 100644
index 235cb432e9..0000000000
--- a/plugins/UM3NetworkPrinting/resources/svg/icons/extruder.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
\ No newline at end of file
diff --git a/plugins/UM3NetworkPrinting/resources/svg/paused-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/paused-icon.svg
deleted file mode 100644
index a66217d662..0000000000
--- a/plugins/UM3NetworkPrinting/resources/svg/paused-icon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/plugins/UM3NetworkPrinting/resources/svg/warning-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/warning-icon.svg
deleted file mode 100644
index 064d0783e0..0000000000
--- a/plugins/UM3NetworkPrinting/resources/svg/warning-icon.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
\ No newline at end of file
diff --git a/resources/definitions/fdmextruder.def.json b/resources/definitions/fdmextruder.def.json
index 67d28392b3..7dbd775b49 100644
--- a/resources/definitions/fdmextruder.def.json
+++ b/resources/definitions/fdmextruder.def.json
@@ -197,7 +197,7 @@
{
"label": "Build Plate Adhesion",
"type": "category",
- "icon": "category_adhesion",
+ "icon": "Adhesion",
"description": "Adhesion",
"children":
{
@@ -232,7 +232,7 @@
"material":
{
"label": "Material",
- "icon": "category_material",
+ "icon": "Spool",
"description": "Material",
"type": "category",
"children":
diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json
index de74ee1bc4..dca63aaa5e 100644
--- a/resources/definitions/fdmprinter.def.json
+++ b/resources/definitions/fdmprinter.def.json
@@ -28,7 +28,7 @@
"label": "Machine",
"type": "category",
"description": "Machine specific settings",
- "icon": "category_machine",
+ "icon": "Printer",
"children":
{
"machine_name":
@@ -765,7 +765,7 @@
{
"label": "Quality",
"type": "category",
- "icon": "category_layer_height",
+ "icon": "PrintQuality",
"description": "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)",
"children":
{
@@ -1001,7 +1001,7 @@
"shell":
{
"label": "Walls",
- "icon": "category_shell",
+ "icon": "PrintShell",
"description": "Shell",
"type": "category",
"children":
@@ -1346,7 +1346,7 @@
"top_bottom":
{
"label": "Top/Bottom",
- "icon": "category_topbottom",
+ "icon": "PrintTopBottom",
"description": "Top/Bottom",
"type": "category",
"children":
@@ -1822,7 +1822,7 @@
"infill":
{
"label": "Infill",
- "icon": "category_infill",
+ "icon": "Infill1",
"description": "Infill",
"type": "category",
"children":
@@ -2161,7 +2161,7 @@
"material":
{
"label": "Material",
- "icon": "category_material",
+ "icon": "Spool",
"description": "Material",
"type": "category",
"children":
@@ -2766,7 +2766,7 @@
"speed":
{
"label": "Speed",
- "icon": "category_speed",
+ "icon": "SpeedOMeter",
"description": "Speed",
"type": "category",
"children":
@@ -3672,7 +3672,7 @@
"travel":
{
"label": "Travel",
- "icon": "category_travel",
+ "icon": "PrintTravel",
"description": "travel",
"type": "category",
"children":
@@ -3977,7 +3977,7 @@
"cooling":
{
"label": "Cooling",
- "icon": "category_cool",
+ "icon": "Fan",
"description": "Cooling",
"type": "category",
"children":
@@ -4127,7 +4127,7 @@
{
"label": "Support",
"type": "category",
- "icon": "category_support",
+ "icon": "Support",
"description": "Support",
"children":
{
@@ -5167,7 +5167,7 @@
{
"label": "Build Plate Adhesion",
"type": "category",
- "icon": "category_adhesion",
+ "icon": "Adhesion",
"description": "Adhesion",
"children":
{
@@ -5821,7 +5821,7 @@
{
"label": "Dual Extrusion",
"type": "category",
- "icon": "category_dual",
+ "icon": "DualExtrusion",
"description": "Settings used for printing with multiple extruders.",
"children":
{
@@ -6036,7 +6036,7 @@
{
"label": "Mesh Fixes",
"type": "category",
- "icon": "category_fixes",
+ "icon": "Bandage",
"description": "Make the meshes more suited for 3D printing.",
"children":
{
@@ -6162,7 +6162,7 @@
{
"label": "Special Modes",
"type": "category",
- "icon": "category_blackmagic",
+ "icon": "BlackMagic",
"description": "Non-traditional ways to print your models.",
"children":
{
@@ -6335,7 +6335,7 @@
{
"label": "Experimental",
"type": "category",
- "icon": "category_experimental",
+ "icon": "Experiment",
"description": "Features that haven't completely been fleshed out yet.",
"children":
{
diff --git a/resources/qml/Account/AvatarImage.qml b/resources/qml/Account/AvatarImage.qml
index 120173366f..58c39e5065 100644
--- a/resources/qml/Account/AvatarImage.qml
+++ b/resources/qml/Account/AvatarImage.qml
@@ -52,7 +52,7 @@ Item
width: parent.width + 2
height: parent.height + 2
visible: hasAvatar
- source: UM.Theme.getIcon("circle_outline")
+ source: UM.Theme.getIcon("CircleOutline")
sourceSize: Qt.size(parent.width, parent.height)
color: UM.Theme.getColor("account_widget_outline_active")
}
diff --git a/resources/qml/Account/SyncState.qml b/resources/qml/Account/SyncState.qml
index f7630b500a..d5a9d392e2 100644
--- a/resources/qml/Account/SyncState.qml
+++ b/resources/qml/Account/SyncState.qml
@@ -18,27 +18,27 @@ Row // Sync state icon + message
{
name: "idle"
when: syncState == Cura.AccountSyncState.IDLE
- PropertyChanges { target: icon; source: UM.Theme.getIcon("update")}
+ PropertyChanges { target: icon; source: UM.Theme.getIcon("ArrowDoubleCircleRight")}
},
State
{
name: "syncing"
when: syncState == Cura.AccountSyncState.SYNCING
- PropertyChanges { target: icon; source: UM.Theme.getIcon("update") }
+ PropertyChanges { target: icon; source: UM.Theme.getIcon("ArrowDoubleCircleRight") }
PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Checking...")}
},
State
{
name: "up_to_date"
when: syncState == Cura.AccountSyncState.SUCCESS
- PropertyChanges { target: icon; source: UM.Theme.getIcon("checked") }
+ PropertyChanges { target: icon; source: UM.Theme.getIcon("CheckCircle") }
PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Account synced")}
},
State
{
name: "error"
when: syncState == Cura.AccountSyncState.ERROR
- PropertyChanges { target: icon; source: UM.Theme.getIcon("warning_light") }
+ PropertyChanges { target: icon; source: UM.Theme.getIcon("Warning") }
PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Something went wrong...")}
}
]
diff --git a/resources/qml/ActionPanel/OutputDevicesActionButton.qml b/resources/qml/ActionPanel/OutputDevicesActionButton.qml
index 866b8cc627..6d1a1d83dd 100644
--- a/resources/qml/ActionPanel/OutputDevicesActionButton.qml
+++ b/resources/qml/ActionPanel/OutputDevicesActionButton.qml
@@ -60,7 +60,7 @@ Item
leftPadding: UM.Theme.getSize("narrow_margin").width //Need more space than usual here for wide text.
rightPadding: UM.Theme.getSize("narrow_margin").width
- iconSource: popup.opened ? UM.Theme.getIcon("arrow_top") : UM.Theme.getIcon("arrow_bottom")
+ iconSource: popup.opened ? UM.Theme.getIcon("ChevronSingleUp") : UM.Theme.getIcon("ChevronSingleDown")
color: UM.Theme.getColor("action_panel_secondary")
visible: (devicesModel.deviceCount > 1)
@@ -113,4 +113,4 @@ Item
}
UM.OutputDevicesModel { id: devicesModel }
-}
\ No newline at end of file
+}
diff --git a/resources/qml/ActionPanel/OutputProcessWidget.qml b/resources/qml/ActionPanel/OutputProcessWidget.qml
index be6d68de4f..6e412c9a04 100644
--- a/resources/qml/ActionPanel/OutputProcessWidget.qml
+++ b/resources/qml/ActionPanel/OutputProcessWidget.qml
@@ -57,7 +57,7 @@ Column
width: parent.width
text: preSlicedData ? catalog.i18nc("@label", "No time estimation available") : PrintInformation.currentPrintTime.getDisplayString(UM.DurationFormat.Long)
- source: UM.Theme.getIcon("clock")
+ source: UM.Theme.getIcon("Clock")
font: UM.Theme.getFont("medium_bold")
}
@@ -99,7 +99,7 @@ Column
}
return totalWeights + "g · " + totalLengths.toFixed(2) + "m"
}
- source: UM.Theme.getIcon("spool")
+ source: UM.Theme.getIcon("Spool")
font: UM.Theme.getFont("default")
}
}
@@ -142,4 +142,4 @@ Column
height: UM.Theme.getSize("action_button").height
}
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/ActionPanel/PrintInformationWidget.qml b/resources/qml/ActionPanel/PrintInformationWidget.qml
index 097f281946..d9923ce4e8 100644
--- a/resources/qml/ActionPanel/PrintInformationWidget.qml
+++ b/resources/qml/ActionPanel/PrintInformationWidget.qml
@@ -11,7 +11,7 @@ UM.RecolorImage
{
id: widget
- source: UM.Theme.getIcon("info")
+ source: UM.Theme.getIcon("Information")
width: visible ? UM.Theme.getSize("section_icon").width : 0
height: UM.Theme.getSize("section_icon").height
@@ -58,4 +58,4 @@ UM.RecolorImage
arrowSize: UM.Theme.getSize("default_arrow").width
}
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/ActionPanel/SliceProcessWidget.qml b/resources/qml/ActionPanel/SliceProcessWidget.qml
index dbbfe784ef..42df08560a 100644
--- a/resources/qml/ActionPanel/SliceProcessWidget.qml
+++ b/resources/qml/ActionPanel/SliceProcessWidget.qml
@@ -65,7 +65,7 @@ Column
visible: widget.backendState == UM.Backend.Error
text: catalog.i18nc("@label:PrintjobStatus", "Unable to slice")
- source: UM.Theme.getIcon("warning")
+ source: UM.Theme.getIcon("Warning")
iconColor: UM.Theme.getColor("warning")
}
diff --git a/resources/qml/CheckBoxWithTooltip.qml b/resources/qml/CheckBoxWithTooltip.qml
index 403efb4d7b..e17940014a 100644
--- a/resources/qml/CheckBoxWithTooltip.qml
+++ b/resources/qml/CheckBoxWithTooltip.qml
@@ -32,7 +32,7 @@ CheckBox
height: Math.round(parent.height / 2.5)
sourceSize.height: width
color: UM.Theme.getColor("checkbox_mark")
- source: UM.Theme.getIcon("check")
+ source: UM.Theme.getIcon("Check")
opacity: checkbox.checked
Behavior on opacity { NumberAnimation { duration: 100; } }
}
diff --git a/resources/qml/ExpandableComponent.qml b/resources/qml/ExpandableComponent.qml
index f637cccdbb..58719eb1fe 100644
--- a/resources/qml/ExpandableComponent.qml
+++ b/resources/qml/ExpandableComponent.qml
@@ -165,7 +165,7 @@ Item
verticalCenter: parent.verticalCenter
margins: background.padding
}
- source: UM.Theme.getIcon("pencil")
+ source: UM.Theme.getIcon("Pen")
visible: source != ""
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
diff --git a/resources/qml/ExpandableComponentHeader.qml b/resources/qml/ExpandableComponentHeader.qml
index cd6ccfb825..7dd1aa358a 100644
--- a/resources/qml/ExpandableComponentHeader.qml
+++ b/resources/qml/ExpandableComponentHeader.qml
@@ -59,11 +59,11 @@ Cura.RoundedRectangle
anchors.fill: parent
sourceSize.width: width
color: closeButton.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text")
- source: UM.Theme.getIcon("cross1")
+ source: UM.Theme.getIcon("Cancel")
}
background: Item {}
onClicked: toggleContent() // Will hide the popup item
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/ExpandablePopup.qml b/resources/qml/ExpandablePopup.qml
index 7829093e8d..b490ad5bc4 100644
--- a/resources/qml/ExpandablePopup.qml
+++ b/resources/qml/ExpandablePopup.qml
@@ -178,7 +178,7 @@ Item
verticalCenter: parent.verticalCenter
margins: background.padding
}
- source: expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left")
+ source: expanded ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleLeft")
visible: source != ""
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
diff --git a/resources/qml/ExtruderIcon.qml b/resources/qml/ExtruderIcon.qml
index 015ebea52e..1c93966519 100644
--- a/resources/qml/ExtruderIcon.qml
+++ b/resources/qml/ExtruderIcon.qml
@@ -22,7 +22,7 @@ Item
id: mainIcon
anchors.fill: parent
- source: UM.Theme.getIcon("extruder_button")
+ source: UM.Theme.getIcon("Extruder", "medium")
color: extruderEnabled ? materialColor: UM.Theme.getColor("disabled")
}
@@ -32,15 +32,14 @@ Item
width: height
height: Math.round(parent.height / 2)
- radius: Math.round(width / 2)
+ radius: Math.round(width)
color: UM.Theme.getColor("toolbar_background")
anchors
{
horizontalCenter: parent.horizontalCenter
top: parent.top
- // The circle needs to be slightly off center (so it sits in the middle of the square bit of the icon)
- topMargin: (parent.height - height) / 2 - 0.1 * parent.height
+ topMargin: (parent.height - height) / 2
}
Label
@@ -64,9 +63,9 @@ Item
anchors.fill: parent
anchors.margins: UM.Theme.getSize("thick_lining").width
sourceSize.height: width
- source: UM.Theme.getIcon("cross1")
+ source: UM.Theme.getIcon("Cancel")
visible: !extruderEnabled
color: UM.Theme.getColor("text")
}
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/JobSpecs.qml b/resources/qml/JobSpecs.qml
index c1989c4c95..4aa5fa8bd5 100644
--- a/resources/qml/JobSpecs.qml
+++ b/resources/qml/JobSpecs.qml
@@ -66,7 +66,7 @@ Item
sourceSize.width: width
sourceSize.height: width
color: control.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text")
- source: UM.Theme.getIcon("pencil")
+ source: UM.Theme.getIcon("Pen")
}
}
}
diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml
index 2e2dd0820a..92b88d3c09 100644
--- a/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml
+++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml
@@ -93,7 +93,7 @@ Button
id: icon
anchors.verticalCenter: unknownMaterialMessage.verticalCenter
- source: UM.Theme.getIcon("warning")
+ source: UM.Theme.getIcon("Warning")
color: UM.Theme.getColor("warning")
width: UM.Theme.getSize("section_icon").width
height: width
diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml
index 3350b29580..ab1d66f0e1 100644
--- a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml
+++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml
@@ -39,7 +39,7 @@ Item
anchors.left: parent.left
anchors.verticalCenter: label.verticalCenter
- source: UM.Theme.getIcon("warning")
+ source: UM.Theme.getIcon("Warning")
color: UM.Theme.getColor("warning")
width: UM.Theme.getSize("section_icon").width
height: width
diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml
index d388bd7a7e..ad4911404a 100644
--- a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml
+++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml
@@ -206,7 +206,7 @@ Cura.ExpandablePopup
anchors.right: parent.right
- iconSource: UM.Theme.getIcon("arrow_right")
+ iconSource: UM.Theme.getIcon("ChevronSingleRight")
isIconOnRightSide: true
onClicked:
@@ -222,7 +222,7 @@ Cura.ExpandablePopup
visible: popupItem.configuration_method == ConfigurationMenu.ConfigurationMethod.Custom
text: catalog.i18nc("@label", "Configurations")
- iconSource: UM.Theme.getIcon("arrow_left")
+ iconSource: UM.Theme.getIcon("ChevronSingleLeft")
onClicked:
{
diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml
index 30f6d1b68f..7d1393151f 100644
--- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml
+++ b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml
@@ -314,7 +314,7 @@ Item
anchors.centerIn: parent
background: UM.RecolorImage
{
- source: UM.Theme.getIcon("printing_guideline")
+ source: UM.Theme.getIcon("Guide")
color: instructionButton.hovered ? UM.Theme.getColor("primary") : UM.Theme.getColor("icon")
}
visible: selectors.instructionLink != ""
@@ -388,7 +388,7 @@ Item
{
id: warningImage
anchors.left: parent.left
- source: UM.Theme.getIcon("warning")
+ source: UM.Theme.getIcon("Warning")
width: UM.Theme.getSize("section_icon").width
height: UM.Theme.getSize("section_icon").height
sourceSize.width: width
diff --git a/resources/qml/ObjectItemButton.qml b/resources/qml/ObjectItemButton.qml
index 5867a1c544..7d8988fde4 100644
--- a/resources/qml/ObjectItemButton.qml
+++ b/resources/qml/ObjectItemButton.qml
@@ -53,7 +53,7 @@ Button
anchors.left: parent.left
width: height
height: parent.height - UM.Theme.getSize("narrow_margin").height
- source: UM.Theme.getIcon("extruder_button")
+ source: UM.Theme.getIcon("Extruder", "medium")
color: extruderColor
visible: showExtruderSwatches && extruderColor != ""
}
@@ -168,12 +168,12 @@ Button
{
switch (meshType) {
case "support_mesh":
- return UM.Theme.getIcon("pos_print_as_support");
+ return UM.Theme.getIcon("MeshTypeSupport");
case "cutting_mesh":
case "infill_mesh":
- return UM.Theme.getIcon("pos_modify_overlaps");
+ return UM.Theme.getIcon("MeshTypeIntersect");
case "anti_overhang_mesh":
- return UM.Theme.getIcon("pos_modify_dont_support_overlap");
+ return UM.Theme.getIcon("BlockSupportOverlaps");
}
return "";
}
diff --git a/resources/qml/ObjectSelector.qml b/resources/qml/ObjectSelector.qml
index 15cb476e08..0cdc2b3f80 100644
--- a/resources/qml/ObjectSelector.qml
+++ b/resources/qml/ObjectSelector.qml
@@ -48,7 +48,7 @@ Item
sourceSize.width: width
anchors.left: parent.left
color: openCloseButton.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text")
- source: objectSelector.opened ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_top")
+ source: objectSelector.opened ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleUp")
}
Label
diff --git a/resources/qml/Preferences/Materials/MaterialsBrandSection.qml b/resources/qml/Preferences/Materials/MaterialsBrandSection.qml
index 606acc2950..dc8be9563b 100644
--- a/resources/qml/Preferences/Materials/MaterialsBrandSection.qml
+++ b/resources/qml/Preferences/Materials/MaterialsBrandSection.qml
@@ -66,7 +66,7 @@ Item
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
color: "black"
- source: brand_section.expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left")
+ source: brand_section.expanded ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleLeft")
}
}
}
@@ -144,4 +144,4 @@ Item
expanded = materialList.expandedBrands.indexOf(sectionName) > -1
}
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/Preferences/Materials/MaterialsSlot.qml b/resources/qml/Preferences/Materials/MaterialsSlot.qml
index 81bb8759ff..840c636196 100644
--- a/resources/qml/Preferences/Materials/MaterialsSlot.qml
+++ b/resources/qml/Preferences/Materials/MaterialsSlot.qml
@@ -122,7 +122,7 @@ Rectangle
}
}
}
- source: materialSlot.is_favorite ? UM.Theme.getIcon("favorites_star_full") : UM.Theme.getIcon("favorites_star_empty")
+ source: materialSlot.is_favorite ? UM.Theme.getIcon("StarFilled") : UM.Theme.getIcon("Star")
}
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/Preferences/Materials/MaterialsTypeSection.qml b/resources/qml/Preferences/Materials/MaterialsTypeSection.qml
index 7219cb7b89..09f9964604 100644
--- a/resources/qml/Preferences/Materials/MaterialsTypeSection.qml
+++ b/resources/qml/Preferences/Materials/MaterialsTypeSection.qml
@@ -78,7 +78,7 @@ Item
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
color: "black"
- source: material_type_section.expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left")
+ source: material_type_section.expanded ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleLeft")
}
}
@@ -134,4 +134,4 @@ Item
expanded = materialList.expandedTypes.indexOf(materialBrand + "_" + materialName) > -1
}
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml
index d18febfc5f..92cbd7dd89 100644
--- a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml
+++ b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml
@@ -158,7 +158,7 @@ Item
anchors.rightMargin: UM.Theme.getSize("default_margin").width
color: hovered ? UM.Theme.getColor("setting_control_button_hover") : UM.Theme.getColor("setting_control_button");
- iconSource: UM.Theme.getIcon("star")
+ iconSource: UM.Theme.getIcon("StarFilled")
onClicked:
{
@@ -176,7 +176,7 @@ Item
{
id: downArrow
- source: UM.Theme.getIcon("arrow_bottom")
+ source: UM.Theme.getIcon("ChevronSingleDown")
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
diff --git a/resources/qml/PrintSetupSelector/NoIntentIcon.qml b/resources/qml/PrintSetupSelector/NoIntentIcon.qml
index 7943a05ab4..6fc883fdef 100644
--- a/resources/qml/PrintSetupSelector/NoIntentIcon.qml
+++ b/resources/qml/PrintSetupSelector/NoIntentIcon.qml
@@ -18,7 +18,7 @@ Item
UM.RecolorImage
{
- source: UM.Theme.getIcon("info")
+ source: UM.Theme.getIcon("Information")
color: UM.Theme.getColor("icon")
anchors.fill: parent
}
@@ -33,4 +33,4 @@ Item
}
onExited: base.hideTooltip()
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml b/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml
index 81b752eef6..0a5a466780 100644
--- a/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml
+++ b/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml
@@ -142,7 +142,7 @@ Item
leftPadding: UM.Theme.getSize("default_margin").width
rightPadding: UM.Theme.getSize("default_margin").width
text: catalog.i18nc("@button", "Recommended")
- iconSource: UM.Theme.getIcon("arrow_left")
+ iconSource: UM.Theme.getIcon("ChevronSingleLeft")
visible: currentModeIndex == PrintSetupSelectorContents.Mode.Custom
onClicked: currentModeIndex = PrintSetupSelectorContents.Mode.Recommended
}
@@ -156,7 +156,7 @@ Item
leftPadding: UM.Theme.getSize("default_margin").width
rightPadding: UM.Theme.getSize("default_margin").width
text: catalog.i18nc("@button", "Custom")
- iconSource: UM.Theme.getIcon("arrow_right")
+ iconSource: UM.Theme.getIcon("ChevronSingleRight")
isIconOnRightSide: true
visible: currentModeIndex == PrintSetupSelectorContents.Mode.Recommended
onClicked:
@@ -233,10 +233,10 @@ Item
height: UM.Theme.getSize("drag_icon").height
anchors.centerIn: parent
- source: UM.Theme.getIcon("resize")
+ source: UM.Theme.getIcon("ThreeDots")
color: UM.Theme.getColor("small_button_text")
}
}
}
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml b/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml
index 1a15980693..ff9204655f 100644
--- a/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml
+++ b/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml
@@ -15,7 +15,7 @@ RowLayout
Cura.IconWithText
{
- source: UM.Theme.getIcon("category_layer_height")
+ source: UM.Theme.getIcon("PrintQuality")
text:
{
if (Cura.MachineManager.activeStack)
@@ -50,7 +50,7 @@ RowLayout
Cura.IconWithText
{
- source: UM.Theme.getIcon("category_infill")
+ source: UM.Theme.getIcon("Infill1")
text: Cura.MachineManager.activeStack ? parseInt(infillDensity.properties.value) + "%" : "0%"
font: UM.Theme.getFont("medium")
@@ -65,7 +65,7 @@ RowLayout
Cura.IconWithText
{
- source: UM.Theme.getIcon("category_support")
+ source: UM.Theme.getIcon("Support")
text: supportEnabled.properties.value == "True" ? enabledText : disabledText
font: UM.Theme.getFont("medium")
@@ -80,7 +80,7 @@ RowLayout
Cura.IconWithText
{
- source: UM.Theme.getIcon("category_adhesion")
+ source: UM.Theme.getIcon("Adhesion")
text: platformAdhesionType.properties.value != "skirt" && platformAdhesionType.properties.value != "none" ? enabledText : disabledText
font: UM.Theme.getFont("medium")
@@ -92,4 +92,4 @@ RowLayout
watchedProperties: [ "value"]
}
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml
index 1ae265ab47..df2c1bfae6 100644
--- a/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml
+++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml
@@ -25,7 +25,7 @@ Item
id: enableAdhesionRowTitle
anchors.top: parent.top
anchors.left: parent.left
- source: UM.Theme.getIcon("category_adhesion")
+ source: UM.Theme.getIcon("Adhesion")
text: catalog.i18nc("@label", "Adhesion")
font: UM.Theme.getFont("medium")
width: labelColumnWidth
@@ -87,4 +87,4 @@ Item
watchedProperties: [ "value", "resolve", "enabled" ]
storeIndex: 0
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml
index 19f199fea6..8da97437cf 100644
--- a/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml
+++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml
@@ -29,21 +29,21 @@ Item
var density = parseInt(infillDensity.properties.value)
if (parseInt(infillSteps.properties.value) != 0)
{
- return UM.Theme.getIcon("gradual")
+ return UM.Theme.getIcon("InfillGradual")
}
if (density <= 0)
{
- return UM.Theme.getIcon("hollow")
+ return UM.Theme.getIcon("Infill0")
}
if (density < 40)
{
- return UM.Theme.getIcon("sparse")
+ return UM.Theme.getIcon("Infill3")
}
if (density < 90)
{
- return UM.Theme.getIcon("dense")
+ return UM.Theme.getIcon("Infill2")
}
- return UM.Theme.getIcon("solid")
+ return UM.Theme.getIcon("Solid")
}
}
@@ -61,7 +61,7 @@ Item
id: infillRowTitle
anchors.top: parent.top
anchors.left: parent.left
- source: UM.Theme.getIcon("category_infill")
+ source: UM.Theme.getIcon("Infill1")
text: catalog.i18nc("@label", "Infill") + " (%)"
font: UM.Theme.getFont("medium")
width: labelColumnWidth
@@ -252,4 +252,4 @@ Item
watchedProperties: ["value", "enabled"]
storeIndex: 0
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml
index 337aff573f..a8e19c7357 100644
--- a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml
+++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml
@@ -48,7 +48,7 @@ Item
Cura.IconWithText
{
id: profileLabel
- source: UM.Theme.getIcon("category_layer_height")
+ source: UM.Theme.getIcon("PrintQuality")
text: catalog.i18nc("@label", "Profiles")
font: UM.Theme.getFont("medium")
width: labelColumnWidth
@@ -69,7 +69,7 @@ Item
}
color: hovered ? UM.Theme.getColor("setting_control_button_hover") : UM.Theme.getColor("setting_control_button")
- iconSource: UM.Theme.getIcon("reset")
+ iconSource: UM.Theme.getIcon("ArrowReset")
onClicked:
{
@@ -198,4 +198,4 @@ Item
}
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml
index aadee43c36..924dcd5ec4 100644
--- a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml
+++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml
@@ -26,7 +26,7 @@ Item
anchors.top: parent.top
anchors.left: parent.left
visible: enableSupportCheckBox.visible
- source: UM.Theme.getIcon("category_support")
+ source: UM.Theme.getIcon("Support")
text: catalog.i18nc("@label", "Support")
font: UM.Theme.getFont("medium")
width: labelColumnWidth
@@ -162,7 +162,7 @@ Item
x: supportExtruderCombobox.width - width - supportExtruderCombobox.rightPadding
y: supportExtruderCombobox.topPadding + Math.round((supportExtruderCombobox.availableHeight - height) / 2)
- source: UM.Theme.getIcon("arrow_bottom")
+ source: UM.Theme.getIcon("ChevronSingleDown")
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
sourceSize.width: width + 5 * screenScaleFactor
@@ -229,7 +229,7 @@ Item
sourceSize.width: width
sourceSize.height: height
- source: UM.Theme.getIcon("extruder_button")
+ source: UM.Theme.getIcon("Extruder", "medium")
color: supportExtruderCombobox.color
}
}
@@ -299,7 +299,7 @@ Item
sourceSize.width: width
sourceSize.height: height
- source: UM.Theme.getIcon("extruder_button")
+ source: UM.Theme.getIcon("Extruder", "medium")
color: supportExtruderCombobox.model.getItem(index).color
}
}
@@ -342,4 +342,4 @@ Item
watchedProperties: ["value"]
storeIndex: 0
}
-}
\ No newline at end of file
+}
diff --git a/resources/qml/PrinterOutput/ManualPrinterControl.qml b/resources/qml/PrinterOutput/ManualPrinterControl.qml
index e8947bfdf4..3213f1ace8 100644
--- a/resources/qml/PrinterOutput/ManualPrinterControl.qml
+++ b/resources/qml/PrinterOutput/ManualPrinterControl.qml
@@ -102,7 +102,7 @@ Item
Layout.column: 1
Layout.preferredWidth: width
Layout.preferredHeight: height
- iconSource: UM.Theme.getIcon("arrow_top");
+ iconSource: UM.Theme.getIcon("ChevronSingleUp");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@@ -119,7 +119,7 @@ Item
Layout.column: 0
Layout.preferredWidth: width
Layout.preferredHeight: height
- iconSource: UM.Theme.getIcon("arrow_left");
+ iconSource: UM.Theme.getIcon("ChevronSingleLeft");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@@ -136,7 +136,7 @@ Item
Layout.column: 2
Layout.preferredWidth: width
Layout.preferredHeight: height
- iconSource: UM.Theme.getIcon("arrow_right");
+ iconSource: UM.Theme.getIcon("ChevronSingleRight");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@@ -153,7 +153,7 @@ Item
Layout.column: 1
Layout.preferredWidth: width
Layout.preferredHeight: height
- iconSource: UM.Theme.getIcon("arrow_bottom");
+ iconSource: UM.Theme.getIcon("ChevronSingleDown");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@@ -170,7 +170,7 @@ Item
Layout.column: 1
Layout.preferredWidth: width
Layout.preferredHeight: height
- iconSource: UM.Theme.getIcon("home");
+ iconSource: UM.Theme.getIcon("House");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@@ -200,7 +200,7 @@ Item
Button
{
- iconSource: UM.Theme.getIcon("arrow_top");
+ iconSource: UM.Theme.getIcon("ChevronSingleUp");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@@ -213,7 +213,7 @@ Item
Button
{
- iconSource: UM.Theme.getIcon("home");
+ iconSource: UM.Theme.getIcon("House");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@@ -226,7 +226,7 @@ Item
Button
{
- iconSource: UM.Theme.getIcon("arrow_bottom");
+ iconSource: UM.Theme.getIcon("ChevronSingleDown");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
diff --git a/resources/qml/PrinterSelector/MachineSelector.qml b/resources/qml/PrinterSelector/MachineSelector.qml
index 17bb80906a..7c74be1605 100644
--- a/resources/qml/PrinterSelector/MachineSelector.qml
+++ b/resources/qml/PrinterSelector/MachineSelector.qml
@@ -93,11 +93,11 @@ Cura.ExpandablePopup
{
if (isGroup)
{
- return UM.Theme.getIcon("printer_group")
+ return UM.Theme.getIcon("PrinterTriple")
}
else if (isNetworkPrinter || isCloudRegistered)
{
- return UM.Theme.getIcon("printer_single")
+ return UM.Theme.getIcon("Printer")
}
else
{
@@ -118,7 +118,25 @@ Cura.ExpandablePopup
leftMargin: UM.Theme.getSize("thick_margin").width
}
- source: UM.Theme.getIcon(connectionStatus)
+ source:
+ {
+ if (connectionStatus == "printer_connected")
+ {
+ return UM.Theme.getIcon("CheckBlueBG", "low")
+ }
+ else if (connectionStatus == "printer_cloud_connected")
+ {
+ return UM.Theme.getIcon("CloudBlueBG", "low")
+ }
+ else if (connectionStatus == "printer_cloud_not_available")
+ {
+ return UM.Theme.getIcon("CloudGreyBG", "low")
+ }
+ else
+ {
+ return ""
+ }
+ }
width: UM.Theme.getSize("printer_status_icon").width
height: UM.Theme.getSize("printer_status_icon").height
diff --git a/resources/qml/Settings/SettingCategory.qml b/resources/qml/Settings/SettingCategory.qml
index e3e12d7753..a42db9cdcb 100644
--- a/resources/qml/Settings/SettingCategory.qml
+++ b/resources/qml/Settings/SettingCategory.qml
@@ -93,7 +93,7 @@ Button
height: UM.Theme.getSize("standard_arrow").height
sourceSize.height: width
color: UM.Theme.getColor("setting_control_button")
- source: definition.expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left")
+ source: definition.expanded ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleLeft")
}
}
@@ -154,7 +154,7 @@ Button
color: UM.Theme.getColor("setting_control_button")
hoverColor: UM.Theme.getColor("setting_control_button_hover")
- iconSource: UM.Theme.getIcon("settings")
+ iconSource: UM.Theme.getIcon("Sliders")
onClicked: Cura.Actions.configureSettingVisibility.trigger(definition)
}
@@ -195,7 +195,7 @@ Button
color: UM.Theme.getColor("setting_control_button")
hoverColor: UM.Theme.getColor("setting_control_button_hover")
- iconSource: UM.Theme.getIcon("notice")
+ iconSource: UM.Theme.getIcon("Information")
onEntered: base.showTooltip(catalog.i18nc("@label","Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible."))
diff --git a/resources/qml/Settings/SettingCheckBox.qml b/resources/qml/Settings/SettingCheckBox.qml
index e3de6e219d..20693b92e3 100644
--- a/resources/qml/Settings/SettingCheckBox.qml
+++ b/resources/qml/Settings/SettingCheckBox.qml
@@ -151,7 +151,7 @@ SettingItem
height: Math.round(parent.height / 2.5)
sourceSize.height: width
color: !enabled ? UM.Theme.getColor("setting_control_disabled_text") : UM.Theme.getColor("setting_control_text");
- source: UM.Theme.getIcon("check")
+ source: UM.Theme.getIcon("Check")
opacity: control.checked ? 1 : 0
Behavior on opacity { NumberAnimation { duration: 100; } }
}
diff --git a/resources/qml/Settings/SettingExtruder.qml b/resources/qml/Settings/SettingExtruder.qml
index 2bf9e24b3d..995e1103f3 100644
--- a/resources/qml/Settings/SettingExtruder.qml
+++ b/resources/qml/Settings/SettingExtruder.qml
@@ -104,7 +104,7 @@ SettingItem
x: control.width - width - control.rightPadding
y: control.topPadding + Math.round((control.availableHeight - height) / 2)
- source: UM.Theme.getIcon("arrow_bottom")
+ source: UM.Theme.getIcon("ChevronSingleDown")
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
sourceSize.width: width + 5 * screenScaleFactor
@@ -171,7 +171,7 @@ SettingItem
sourceSize.width: width
sourceSize.height: height
- source: UM.Theme.getIcon("extruder_button")
+ source: UM.Theme.getIcon("Extruder", "medium")
color: control.color
}
}
@@ -240,7 +240,7 @@ SettingItem
sourceSize.width: width
sourceSize.height: height
- source: UM.Theme.getIcon("extruder_button")
+ source: UM.Theme.getIcon("Extruder", "medium")
color: control.model.getItem(index).color
}
}
diff --git a/resources/qml/Settings/SettingItem.qml b/resources/qml/Settings/SettingItem.qml
index f0c748d190..a377d08cfc 100644
--- a/resources/qml/Settings/SettingItem.qml
+++ b/resources/qml/Settings/SettingItem.qml
@@ -179,7 +179,7 @@ Item
color: UM.Theme.getColor("setting_control_button")
hoverColor: UM.Theme.getColor("setting_control_button")
- iconSource: UM.Theme.getIcon("link")
+ iconSource: UM.Theme.getIcon("Link")
onEntered:
{
@@ -208,7 +208,7 @@ Item
color: UM.Theme.getColor("setting_control_button")
hoverColor: UM.Theme.getColor("setting_control_button_hover")
- iconSource: UM.Theme.getIcon("reset")
+ iconSource: UM.Theme.getIcon("ArrowReset")
onClicked:
{
@@ -324,7 +324,7 @@ Item
color: UM.Theme.getColor("setting_control_button")
hoverColor: UM.Theme.getColor("setting_control_button_hover")
- iconSource: UM.Theme.getIcon("formula")
+ iconSource: UM.Theme.getIcon("Function")
onEntered: { hoverTimer.stop(); base.showTooltip(catalog.i18nc("@label", "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value.")) }
onExited: base.showTooltip(base.createTooltipText())
diff --git a/resources/qml/Settings/SettingOptionalExtruder.qml b/resources/qml/Settings/SettingOptionalExtruder.qml
index ce078551d8..5b1da6b785 100644
--- a/resources/qml/Settings/SettingOptionalExtruder.qml
+++ b/resources/qml/Settings/SettingOptionalExtruder.qml
@@ -105,7 +105,7 @@ SettingItem
x: control.width - width - control.rightPadding
y: control.topPadding + Math.round((control.availableHeight - height) / 2)
- source: UM.Theme.getIcon("arrow_bottom")
+ source: UM.Theme.getIcon("ChevronSingleDown")
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
sourceSize.width: width + 5 * screenScaleFactor
@@ -172,7 +172,7 @@ SettingItem
sourceSize.width: width
sourceSize.height: height
- source: UM.Theme.getIcon("extruder_button")
+ source: UM.Theme.getIcon("Extruder", "medium")
color: control.color
}
}
@@ -237,7 +237,7 @@ SettingItem
sourceSize.width: width
sourceSize.height: height
- source: UM.Theme.getIcon("extruder_button")
+ source: UM.Theme.getIcon("Extruder", "medium")
color: control.model.getItem(index).color
}
}
diff --git a/resources/qml/Settings/SettingView.qml b/resources/qml/Settings/SettingView.qml
index 9506e70b4b..f038d15ca3 100644
--- a/resources/qml/Settings/SettingView.qml
+++ b/resources/qml/Settings/SettingView.qml
@@ -65,7 +65,7 @@ Item
anchors.right: clearFilterButton.left
anchors.rightMargin: Math.round(UM.Theme.getSize("thick_margin").width)
- placeholderText: "" + "