Skip to content

Commit

Permalink
[ui] Fix undersized color buttons in the 3D map config dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Feb 7, 2019
1 parent aec05a7 commit 3b4def8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/ui/3d/phongmaterialwidget.ui
Expand Up @@ -29,6 +29,12 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
</widget>
</item>
<item row="1" column="0">
Expand All @@ -46,6 +52,12 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
</widget>
</item>
<item row="2" column="0">
Expand All @@ -63,6 +75,12 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
</widget>
</item>
<item row="3" column="0">
Expand Down
6 changes: 6 additions & 0 deletions src/ui/3d/qgslightswidget.ui
Expand Up @@ -149,6 +149,12 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
</widget>
</item>
<item row="4" column="0">
Expand Down

1 comment on commit 3b4def8

@nirvn
Copy link
Contributor Author

@nirvn nirvn commented on 3b4def8 Feb 7, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Before vs. fixed:
image

Please sign in to comment.