aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gui/storagewizarddialog.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/gui/storagewizarddialog.cpp b/gui/storagewizarddialog.cpp
index a207c7b9f5..22b87f5244 100644
--- a/gui/storagewizarddialog.cpp
+++ b/gui/storagewizarddialog.cpp
@@ -292,7 +292,10 @@ void StorageWizardDialog::containerWidgetsReflow() {
if (_picture) {
_picture->setVisible(g_system->getOverlayWidth() > 320);
}
- if (_openUrlWidget) _openUrlWidget->setVisible(true);
+ if (_openUrlWidget) {
+ bool visible = g_system->hasFeature(OSystem::kFeatureOpenUrl);
+ _openUrlWidget->setVisible(visible);
+ }
if (_pasteCodeWidget) {
bool visible = showFields && g_system->hasFeature(OSystem::kFeatureClipboardSupport);
_pasteCodeWidget->setVisible(visible);