Skip to content

Commit

Permalink
Fix behavior of import/export predefined scales in options
Browse files Browse the repository at this point in the history
Fixes #17796
  • Loading branch information
nyalldawson committed Jan 21, 2018
1 parent 7494fae commit 9451f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsoptions.cpp
Expand Up @@ -744,7 +744,7 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WindowFlags fl, const QList<QgsOpti
connect( mListGlobalScales, &QListWidget::itemChanged, this, &QgsOptions::scaleItemChanged );
connect( pbnAddScale, &QAbstractButton::clicked, this, &QgsOptions::addScale );
connect( pbnRemoveScale, &QAbstractButton::clicked, this, &QgsOptions::removeScale );
connect( pbnImportScales, &QAbstractButton::clicked, this, &QgsOptions::exportScales );
connect( pbnExportScales, &QAbstractButton::clicked, this, &QgsOptions::exportScales );
connect( pbnImportScales, &QAbstractButton::clicked, this, &QgsOptions::importScales );
connect( pbnDefaultScaleValues, &QAbstractButton::clicked, this, &QgsOptions::restoreDefaultScaleValues );

Expand Down

0 comments on commit 9451f2e

Please sign in to comment.