Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove unused splitter redraw option
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10079 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Feb 1, 2009
1 parent cae42b3 commit 67d60af
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
4 changes: 0 additions & 4 deletions src/app/qgsoptions.cpp
Expand Up @@ -172,8 +172,6 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WFlags fl ) :
cmbWheelAction->setCurrentIndex( settings.value( "/qgis/wheel_action", 0 ).toInt() );
spinZoomFactor->setValue( settings.value( "/qgis/zoom_factor", 2 ).toDouble() );

cbxSplitterRedraw->setChecked( settings.value( "/qgis/splitterRedraw", QVariant( true ) ).toBool() );

//
// Locale settings
//
Expand Down Expand Up @@ -367,8 +365,6 @@ void QgsOptions::saveOptions()
settings.setValue( "/qgis/wheel_action", cmbWheelAction->currentIndex() );
settings.setValue( "/qgis/zoom_factor", spinZoomFactor->value() );

settings.setValue( "/qgis/splitterRedraw", cbxSplitterRedraw->isChecked() );

//digitizing
settings.setValue( "/qgis/digitizing/line_width", mLineWidthSpinBox->value() );
QColor digitizingColor = mLineColourToolButton->color();
Expand Down
7 changes: 0 additions & 7 deletions src/ui/qgsoptionsbase.ui
Expand Up @@ -352,13 +352,6 @@
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="cbxSplitterRedraw" >
<property name="text" >
<string>Continuously redraw the map when dragging the legend/map divider</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
Expand Down

0 comments on commit 67d60af

Please sign in to comment.