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()