diff options
author | Matthew Woehlke <matthew.woehlke@kitware.com> | 2021-01-15 16:27:52 (GMT) |
---|---|---|
committer | Matthew Woehlke <matthew.woehlke@kitware.com> | 2021-01-15 16:43:34 (GMT) |
commit | 79d00c629f9029cd1d9a5e1dacbfe498779959dc (patch) | |
tree | a35c70c9cc3ec2353cf4134bb94eed30072258a6 /Source | |
parent | 15e8072859e18e8a8016f263fb25daa650295672 (diff) | |
download | CMake-79d00c629f9029cd1d9a5e1dacbfe498779959dc.zip CMake-79d00c629f9029cd1d9a5e1dacbfe498779959dc.tar.gz CMake-79d00c629f9029cd1d9a5e1dacbfe498779959dc.tar.bz2 |
CMake GUI: Fix rendering issue
Remove style sheet from a combo box in the GUI. I have no idea why this
was being set, but it causes a render glitch. Also, use a more sensible
size policy on the same widget.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/QtDialog/CMakeSetupDialog.ui | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.ui b/Source/QtDialog/CMakeSetupDialog.ui index 3c4bc13..c17c414 100644 --- a/Source/QtDialog/CMakeSetupDialog.ui +++ b/Source/QtDialog/CMakeSetupDialog.ui @@ -84,14 +84,11 @@ <item row="2" column="1"> <widget class="QComboBox" name="BinaryDirectory"> <property name="sizePolicy"> - <sizepolicy hsizetype="Ignored" vsizetype="Fixed"> + <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="styleSheet"> - <string notr="true">padding-left: 0</string> - </property> <property name="editable"> <bool>true</bool> </property> |