From 7fb9bc93eae8007a6eb298fc743bbf70dc50fbc5 Mon Sep 17 00:00:00 2001 From: mouse Date: Mon, 05 Jan 2004 14:10:39 +0000 Subject: configdlg now based on QDialog, instead of QTabWidget --- (limited to 'inputmethods') diff --git a/inputmethods/multikey/configdlg.cpp b/inputmethods/multikey/configdlg.cpp index d29109a..3e39415 100644 --- a/inputmethods/multikey/configdlg.cpp +++ b/inputmethods/multikey/configdlg.cpp @@ -361,10 +361,7 @@ void ConfigDlg::closeEvent(QCloseEvent *) { void ConfigDlg::setMap(int index) { - if (index == 0) { - remove_button->setDisabled(true); - } - else if (default_maps.find(sw_maps[index-1]) != default_maps.end()) { + if (index == 0 || default_maps.find(sw_maps[index-1]) != default_maps.end()) { remove_button->setDisabled(true); } else { remove_button->setEnabled(true); -- cgit v0.9.0.2