Details
-
Sub-task
-
Resolution: Invalid
-
P1: Critical
-
None
-
None
Description
The anchor icons in QmlDesigner/Property Editor have the wrong width/height.
The icons are loaded in share/qtcreator/qmldesigner/propertyeditor/Qt/AnchorButtons.qml:
QPushButton { checkable: true fixedWidth: 32 fixedHeight: 32 styleSheetFile: "anchortop.css"; // ... }
with anchortop.css being:
QPushButton { border-image: url(:/qmldesigner/images/anchor-top-normal.png) 3; border-width: 3; } QPushButton:pressed { border-image: url(:/qmldesigner/images/anchor-top-pressed.png) 3; } QPushButton:checked { border-image: url(:/qmldesigner/images/anchor-top-pressed.png) 3; }
The problem seems to be that QPushButton->setFixedWidth && QPushButton->setFixedHeight doesn't actually have any affect on Mac OS X.