From 3ccd0976cbd29c2b77c5c022bab38bdcf1bf27d4 Mon Sep 17 00:00:00 2001 From: Henning Gruendl Date: Mon, 16 Aug 2021 17:03:26 +0200 Subject: [PATCH] QmlDesigner: Fix broken visibilityOff icon Task-number: QDS-4815 Change-Id: Ie872a2f899c57faf06f7cb6ee54504a8e5168356 Reviewed-by: Qt CI Bot Reviewed-by: Thomas Hartmann --- .../imports/StudioTheme/InternalConstants.qml | 15 ++++++++------- .../imports/StudioTheme/icons.ttf | Bin 18316 -> 18624 bytes .../components/componentcore/theme.h | 3 ++- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml index 984ba1de4d5..66f973e1f49 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml @@ -158,13 +158,14 @@ QtObject { readonly property string unpin: "\u0099" readonly property string upDownIcon: "\u009A" readonly property string upDownSquare2: "\u009B" - readonly property string visibilityOff: "\u009C" - readonly property string visibilityOn: "\u009D" - readonly property string wildcard: "\u009E" - readonly property string zoomAll: "\u009F" - readonly property string zoomIn: "\u00A0" - readonly property string zoomOut: "\u00A1" - readonly property string zoomSelection: "\u00A2" + readonly property string visibilityOffBroken: "\u009C" // visibilityOff + 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 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 c691350148b98fc2544e5e48ff04acd567adbf79..da54c6b603040d53244e888807ffedd5c7f1f966 100644 GIT binary patch delta 694 zcmeC_XFM>G(S(7Kfq{XSp@D&!A;8To#CMv9o+tx@#}Wnx1{wcgeWS>ZRC@*n#s~%m zhJ@tY#Dd)k?U@rzlS(3tP@$U|k%2*L zrnyc$zs*+$Zsr#Z3=9l+%^xp-(UTZ$8QUh?F~%}3-aLm#d z`3KWZ#@5LbnPoShXLe)c?~wc^WQ?RbRGl4W(C%-hV`rrGXGaIpJH0epvU0I z;K>lkkix*gC?>+r$HXqquFj^cq{pnTW~ydlZeYh@u5K=FW^5$KEH1`sWDb&4Gc_?+ zXJeORF*h?cQBzi87guK!6%jKw5;rr~V*&BajE%%ZMcA2-u(7e}=UZ);Kb{ir+LxT7 zBEZDX&QZ@LC@3kZAg?C8Q{e<$;-7(gpo^-$WuRzic8Z98cvx{Wr?IlQSX32=+E^Sb zVh|QyWbPK|tg3GnAi`+NF2c^CA1u2}X_JHAQce1Q88eZAIDnf}+aCd=v6Ol%093h?cdE0#pqH!)6ilIjro43K5O z+gNZK8t7W+8W|WFPX1sWFxkU)A!FO-SGHV?OpGm?zu3uf@C%h?7H1}9=46&s`lqEC dP3CitQDpr8pMi;i0UWCgw{N6ffyE(=1^~5FrT72< delta 365 zcmX>wk+G+r(S(7Kfq{XSp@D&!A;8To#CMwZiOmcQ?gb1C3^M+~`bLo*sdfwuj1deB z3<=4(i3PiEw`WW=QL1;(U|?Y2NYANEdyweU&cMK`z`$U7AR{#~Md9UAX$A&{I}8jA zW*Hf&iCka*Ph?jnb5k?>b>A>BSUq51V0uxIUtE&5vveJUHiPX61_sW#VCOS3 zFt8cC43Fox`O3h}{DOgjf#I&^hW9Xf5~D3+>ts8|SjI)0=P;@=a*HtVK_SEBGfdiy zizfeI+Btb5v)tzM%x;X_8IrrCM5Mx`CP+Qltit-$aI>k!Y*uz-1_K6N2J^|+Z7n#B t4Rp%btsIvzUV%$7FYph{^Lj#JQ22002rWWGDat diff --git a/src/plugins/qmldesigner/components/componentcore/theme.h b/src/plugins/qmldesigner/components/componentcore/theme.h index 4351f02c822..fcaf45e18e5 100644 --- a/src/plugins/qmldesigner/components/componentcore/theme.h +++ b/src/plugins/qmldesigner/components/componentcore/theme.h @@ -166,7 +166,8 @@ public: unpin, upDownIcon, upDownSquare2, - visibilityOff, + visibilityOffBroken, // visibilityOff + visibilityOff, // visibilityOff2 visibilityOn, wildcard, zoomAll,