Skip to content

Commit

Permalink
Allow negative values for range widget
Browse files Browse the repository at this point in the history
Fix #6516
  • Loading branch information
m-kuhn committed Jun 20, 2014
1 parent 7aa2e0b commit d6df10a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/ui/editorwidgets/qgsrangeconfigdlgbase.ui
Expand Up @@ -45,19 +45,25 @@
<item row="0" column="1" rowspan="3">
<widget class="QStackedWidget" name="rangeStackedWidget">
<property name="currentIndex">
<number>1</number>
<number>0</number>
</property>
<widget class="QWidget" name="intPage">
<layout class="QVBoxLayout" name="verticalLayout_11">
<item>
<widget class="QSpinBox" name="minimumSpinBox">
<property name="minimum">
<number>-999999999</number>
</property>
<property name="maximum">
<number>999999999</number>
</property>
</widget>
</item>
<item>
<widget class="QSpinBox" name="maximumSpinBox">
<property name="minimum">
<number>-999999999</number>
</property>
<property name="maximum">
<number>999999999</number>
</property>
Expand All @@ -82,13 +88,19 @@
<layout class="QVBoxLayout" name="verticalLayout_12">
<item>
<widget class="QDoubleSpinBox" name="minimumDoubleSpinBox">
<property name="minimum">
<double>-999999999.990000009536743</double>
</property>
<property name="maximum">
<double>999999999.990000009536743</double>
</property>
</widget>
</item>
<item>
<widget class="QDoubleSpinBox" name="maximumDoubleSpinBox">
<property name="minimum">
<double>-999999999.990000009536743</double>
</property>
<property name="maximum">
<double>999999999.990000009536743</double>
</property>
Expand Down

0 comments on commit d6df10a

Please sign in to comment.