Preferences/ConfigurationDialog.py

changeset 2326
7a9c4dafae62
parent 2302
f29e9405c851
child 2408
dc3a7c9d8f6e
child 2475
c74e1cff7f3f
diff -r f83826045e51 -r 7a9c4dafae62 Preferences/ConfigurationDialog.py
--- a/Preferences/ConfigurationDialog.py	Thu Jan 03 16:17:04 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