summaryrefslogtreecommitdiff
path: root/quacker/settings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quacker/settings.cpp')
-rw-r--r--quacker/settings.cpp22
1 files changed, 12 insertions, 10 deletions
diff --git a/quacker/settings.cpp b/quacker/settings.cpp
index 6cbcb74..6e80afe 100644
--- a/quacker/settings.cpp
+++ b/quacker/settings.cpp
@@ -440,11 +440,12 @@ void Settings::lexiconChanged(const QString &lexiconName)
void Settings::alphabetChanged(const QString &alphabetName)
{
- if (m_alphabetNameCombo->currentIndex() == m_alphabetNameCombo->count() - 1)
- {
- editAlphabet();
- return;
- }
+ // Uncomment when we support an add/edit alphabet dialog
+ // if (m_alphabetNameCombo->currentIndex() == m_alphabetNameCombo->count() - 1)
+ // {
+ // editAlphabet();
+ // return;
+ // }
setQuackleToUseAlphabetName(alphabetName);
CustomQSettings settings;
@@ -455,11 +456,12 @@ void Settings::alphabetChanged(const QString &alphabetName)
void Settings::themeChanged(const QString &themeName)
{
- if (m_themeNameCombo->currentIndex() == m_themeNameCombo->count() - 1)
- {
- editTheme();
- return;
- }
+ // Uncomment when we support an add/edit theme dialog
+ // if (m_themeNameCombo->currentIndex() == m_themeNameCombo->count() - 1)
+ // {
+ // editTheme();
+ // return;
+ // }
setQuackleToUseThemeName(themeName);
CustomQSettings settings;