[qet] qet/qet: [5460] Minor : disable dialog buttons for define the file system path of the |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 5460
Author: scorpio810
Date: 2018-07-28 14:09:00 +0200 (Sat, 28 Jul 2018)
Log Message:
-----------
Minor : disable dialog buttons for define the file system path of the
common and custom elements on macOS
Modified Paths:
--------------
trunk/sources/ui/configpage/generalconfigurationpage.cpp
Modified: trunk/sources/ui/configpage/generalconfigurationpage.cpp
===================================================================
--- trunk/sources/ui/configpage/generalconfigurationpage.cpp 2018-07-27 19:30:46 UTC (rev 5459)
+++ trunk/sources/ui/configpage/generalconfigurationpage.cpp 2018-07-28 12:09:00 UTC (rev 5460)
@@ -80,6 +80,12 @@
}
fillLang();
+
+#ifdef Q_OS_MACOS
+ ui->m_common_elmt_path_cb ->setDisabled(true);
+ ui->m_custom_elmt_path_cb ->setDisabled(true);
+#endif
+
}
GeneralConfigurationPage::~GeneralConfigurationPage()