diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml index 66f973e1f49..0dff2cba8ba 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml @@ -162,10 +162,17 @@ QtObject { readonly property string visibilityOff: "\u009D" // visibilityOff2 readonly property string visibilityOn: "\u009E" readonly property string wildcard: "\u009F" - readonly property string zoomAll: "\u00A0" - readonly property string zoomIn: "\u00A1" - readonly property string zoomOut: "\u00A2" - readonly property string zoomSelection: "\u00A3" + readonly property string wizardsAutomotive: "\u00A0" + readonly property string wizardsDesktop: "\u00A1" + readonly property string wizardsGeneric: "\u00A2" + readonly property string wizardsMcuEmpty: "\u00A3" + readonly property string wizardsMcuGraph: "\u00A4" + readonly property string wizardsMobile: "\u00A5" + readonly property string wizardsUnknown: "\u00A6" + readonly property string zoomAll: "\u00A7" + readonly property string zoomIn: "\u00A8" + readonly property string zoomOut: "\u00A9" + readonly property string zoomSelection: "\u00AA" readonly property font iconFont: Qt.font({ "family": controlIcons.name, diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/icons.ttf b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/icons.ttf index da54c6b6030..403bb7205ad 100644 Binary files a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/icons.ttf and b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/icons.ttf differ diff --git a/src/plugins/qmldesigner/components/componentcore/theme.h b/src/plugins/qmldesigner/components/componentcore/theme.h index fcaf45e18e5..2ef1f82cbb6 100644 --- a/src/plugins/qmldesigner/components/componentcore/theme.h +++ b/src/plugins/qmldesigner/components/componentcore/theme.h @@ -170,6 +170,13 @@ public: visibilityOff, // visibilityOff2 visibilityOn, wildcard, + wizardsAutomotive, + wizardsDesktop, + wizardsGeneric, + wizardsMcuEmpty, + wizardsMcuGraph, + wizardsMobile, + wizardsUnknown, zoomAll, zoomIn, zoomOut,