Skip to content

Commit

Permalink
[BACKPORT] allow negative NODATA values in GDALTools
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Sep 14, 2011
1 parent 69179b6 commit 7093b06
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 9 deletions.
3 changes: 3 additions & 0 deletions python/plugins/GdalTools/tools/widgetBuildVRT.ui
Expand Up @@ -103,6 +103,9 @@
</item>
<item row="5" column="1">
<widget class="QSpinBox" name="srcNoDataSpin">
<property name="minimum">
<number>-100000</number>
</property>
<property name="maximum">
<number>65000</number>
</property>
Expand Down
11 changes: 7 additions & 4 deletions python/plugins/GdalTools/tools/widgetClipper.ui
Expand Up @@ -41,6 +41,9 @@
</item>
<item row="2" column="1">
<widget class="QSpinBox" name="noDataSpin">
<property name="minimum">
<number>-100000</number>
</property>
<property name="maximum">
<number>65000</number>
</property>
Expand Down Expand Up @@ -148,15 +151,15 @@
</widget>
<customwidgets>
<customwidget>
<class>GdalToolsExtentSelector</class>
<class>GdalToolsInOutSelector</class>
<extends>QWidget</extends>
<header>extentSelector</header>
<header>inOutSelector</header>
<container>1</container>
</customwidget>
<customwidget>
<class>GdalToolsInOutSelector</class>
<class>GdalToolsExtentSelector</class>
<extends>QWidget</extends>
<header>inOutSelector</header>
<header>extentSelector</header>
<container>1</container>
</customwidget>
</customwidgets>
Expand Down
13 changes: 8 additions & 5 deletions python/plugins/GdalTools/tools/widgetGrid.ui
Expand Up @@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>777</width>
<height>342</height>
<height>348</height>
</rect>
</property>
<property name="sizePolicy">
Expand Down Expand Up @@ -289,6 +289,9 @@
<property name="decimals">
<number>1</number>
</property>
<property name="minimum">
<double>-100000.000000000000000</double>
</property>
<property name="maximum">
<double>65000.000000000000000</double>
</property>
Expand Down Expand Up @@ -817,15 +820,15 @@
</widget>
<customwidgets>
<customwidget>
<class>GdalToolsExtentSelector</class>
<class>GdalToolsInOutSelector</class>
<extends>QWidget</extends>
<header>extentSelector</header>
<header>inOutSelector</header>
<container>1</container>
</customwidget>
<customwidget>
<class>GdalToolsInOutSelector</class>
<class>GdalToolsExtentSelector</class>
<extends>QWidget</extends>
<header>inOutSelector</header>
<header>extentSelector</header>
<container>1</container>
</customwidget>
</customwidgets>
Expand Down
3 changes: 3 additions & 0 deletions python/plugins/GdalTools/tools/widgetMerge.ui
Expand Up @@ -51,6 +51,9 @@
</item>
<item row="2" column="1">
<widget class="QSpinBox" name="noDataSpin">
<property name="minimum">
<number>-100000</number>
</property>
<property name="maximum">
<number>65000</number>
</property>
Expand Down
3 changes: 3 additions & 0 deletions python/plugins/GdalTools/tools/widgetProximity.ui
Expand Up @@ -96,6 +96,9 @@
</item>
<item row="5" column="1">
<widget class="QSpinBox" name="noDataSpin">
<property name="minimum">
<number>-100000</number>
</property>
<property name="maximum">
<number>65000</number>
</property>
Expand Down

0 comments on commit 7093b06

Please sign in to comment.