Skip to content

Commit

Permalink
Globe: anti-aliasing disabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mwa committed Mar 26, 2014
1 parent 8cbf56f commit 9445c9a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/globe/globe_plugin_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ void QgsGlobePluginDialog::setStereoMode()

void QgsGlobePluginDialog::loadVideoSettings()
{
mAntiAliasingGroupBox->setChecked( settings.value( "/Plugin-Globe/anti-aliasing", true ).toBool() );
mAntiAliasingGroupBox->setChecked( settings.value( "/Plugin-Globe/anti-aliasing", false ).toBool() );
mAANumSamples->setValidator( new QIntValidator( mAANumSamples ) );
mAANumSamples->setText( settings.value( "/Plugin-Globe/anti-aliasing-level", "" ).toString() );
}
Expand Down
3 changes: 3 additions & 0 deletions src/plugins/globe/globe_plugin_dialog_guibase.ui
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,9 @@
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
<layout class="QFormLayout" name="formLayout">
<property name="fieldGrowthPolicy">
<enum>QFormLayout::AllNonFixedFieldsGrow</enum>
Expand Down

0 comments on commit 9445c9a

Please sign in to comment.