Skip to content

Commit

Permalink
fix other isVisible call
Browse files Browse the repository at this point in the history
  • Loading branch information
troopa81 authored and nyalldawson committed Sep 17, 2021
1 parent fdb176f commit 770efa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/editorwidgets/qgsexternalresourceconfigdlg.cpp
Expand Up @@ -178,7 +178,7 @@ QVariantMap QgsExternalResourceConfigDlg::config()
cfg.insert( QStringLiteral( "DefaultRoot" ), mRootPath->text() );

// Save Storage Mode
cfg.insert( QStringLiteral( "StorageMode" ), mStorageModeGroupBox->isVisible() ?
cfg.insert( QStringLiteral( "StorageMode" ), !mStorageType->currentIndex() ?
mStorageButtonGroup->checkedId() : QgsFileWidget::GetFile );

// Save Relative Paths option
Expand Down

0 comments on commit 770efa3

Please sign in to comment.