Preferences/ConfigurationDialog.py

branch
5_3_x
changeset 2328
2249a7a683b2
parent 2302
f29e9405c851
child 2408
dc3a7c9d8f6e
child 2475
c74e1cff7f3f
--- a/Preferences/ConfigurationDialog.py	Tue Jan 08 16:29:55 2013 +0100
+++ b/Preferences/ConfigurationDialog.py	Tue Jan 08 19:14:45 2013 +0100
@@ -20,6 +20,8 @@
 from E5Gui import E5MessageBox
 from E5Gui.E5MainWindow import E5MainWindow
 
+from Globals import isMacPlatform
+
 import QScintilla.Lexers
 
 import Preferences
@@ -383,9 +385,10 @@
         """
         Public slot to accept the buttonBox accept signal.
         """
-        wdg = self.focusWidget()
-        if wdg == self.configList:
-            return
+        if not isMacPlatform():
+            wdg = self.focusWidget()
+            if wdg == self.configList:
+                return
         
         self.accepted.emit()
         

eric ide

mercurial