Skip to content

Commit

Permalink
Fix icon string renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Sep 30, 2024
1 parent a190d0a commit 68472aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/qml/editorwidgets/Range.qml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ EditorWidgetBase {

anchors.verticalCenter: textField.verticalCenter

iconSource: Theme.getThemeVectorIcon("ic_remove_black_24dp")
iconSource: Theme.getThemeVectorIcon("ic_remove_white_24dp")
iconColor: Theme.mainTextColor
bgcolor: "transparent"
visible: enabled
Expand Down Expand Up @@ -103,7 +103,7 @@ EditorWidgetBase {

anchors.verticalCenter: textField.verticalCenter

iconSource: Theme.getThemeVectorIcon("ic_add_black_24dp")
iconSource: Theme.getThemeVectorIcon("ic_add_white_24dp")
iconColor: Theme.mainTextColor
bgcolor: "transparent"
visible: enabled
Expand Down
4 changes: 2 additions & 2 deletions src/qml/processingparameterwidgets/distance.qml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ ProcessingParameterWidgetBase {

anchors.verticalCenter: textField.verticalCenter

iconSource: Theme.getThemeVectorIcon("ic_remove_black_24dp")
iconSource: Theme.getThemeVectorIcon("ic_remove_white_24dp")
iconColor: Theme.mainTextColor
bgcolor: "transparent"
visible: enabled
Expand Down Expand Up @@ -161,7 +161,7 @@ ProcessingParameterWidgetBase {

anchors.verticalCenter: textField.verticalCenter

iconSource: Theme.getThemeVectorIcon("ic_add_black_24dp")
iconSource: Theme.getThemeVectorIcon("ic_add_white_24dp")
iconColor: Theme.mainTextColor
bgcolor: "transparent"
visible: enabled
Expand Down
4 changes: 2 additions & 2 deletions src/qml/processingparameterwidgets/number.qml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ProcessingParameterWidgetBase {

anchors.verticalCenter: textField.verticalCenter

iconSource: Theme.getThemeVectorIcon("ic_remove_black_24dp")
iconSource: Theme.getThemeVectorIcon("ic_remove_white_24dp")
iconColor: Theme.mainTextColor
bgcolor: "transparent"
visible: enabled
Expand Down Expand Up @@ -88,7 +88,7 @@ ProcessingParameterWidgetBase {

anchors.verticalCenter: textField.verticalCenter

iconSource: Theme.getThemeVectorIcon("ic_add_black_24dp")
iconSource: Theme.getThemeVectorIcon("ic_add_white_24dp")
iconColor: Theme.mainTextColor
bgcolor: "transparent"
visible: enabled
Expand Down

0 comments on commit 68472aa

Please sign in to comment.