From a7de3bfca7282dcbb65dc1a23813e23ebeee4d02 Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Wed, 15 May 2024 19:14:26 -0400 Subject: Hide Open URL… action if built without mastodonpp This option doesn't work without mastodonpp, so I think that it might be better to hide it. --- src/settingsdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/settingsdialog.cpp') diff --git a/src/settingsdialog.cpp b/src/settingsdialog.cpp index 387c1e9..0db1319 100644 --- a/src/settingsdialog.cpp +++ b/src/settingsdialog.cpp @@ -22,7 +22,7 @@ SettingsDialog::SettingsDialog(QWidget* parent) #ifndef MASTODONPP_BUILD // Disable unusable settings - // This should be more precise if we ever add other fedi APIs, as it would disable all of them and not only the Mastodon one + // TODO: This should be more precise if we ever add other Fedi APIs, as it would disable all of them and not only the Mastodon one. ui->remoteInstanceGroupBox->setDisabled(true); ui->remoteInstanceGroupBox->setToolTip(tr("Setting disabled as not built with mastodonpp support")); #endif -- cgit v1.2.3-54-g00ecf