Skip to content

Commit

Permalink
Set the minimum point cloud budget to 100000
Browse files Browse the repository at this point in the history
It's not an exact setting, and if we allow users to set it to
small values (like 1000), they'll realise that there's actually
more than 1000 points shown. So instead limit the minimum value
to something more reasonable...
  • Loading branch information
nyalldawson committed Feb 18, 2021
1 parent d80c27d commit 962c68a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/ui/3d/qgspointcloud3dsymbolwidget.ui
Expand Up @@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>573</width>
<height>464</height>
<height>491</height>
</rect>
</property>
<layout class="QGridLayout" name="gridLayout">
Expand Down Expand Up @@ -78,6 +78,9 @@
<property name="enabled">
<bool>true</bool>
</property>
<property name="minimum">
<number>100000</number>
</property>
<property name="maximum">
<number>99999999</number>
</property>
Expand Down Expand Up @@ -115,7 +118,7 @@
<item row="3" column="0">
<widget class="QLabel" name="label_7">
<property name="text">
<string>Point cloud size:</string>
<string>Point cloud size</string>
</property>
</widget>
</item>
Expand Down

0 comments on commit 962c68a

Please sign in to comment.