summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--macosx/tkMacOSXDialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXDialog.c b/macosx/tkMacOSXDialog.c
index 2ad88e9..08998bc 100644
--- a/macosx/tkMacOSXDialog.c
+++ b/macosx/tkMacOSXDialog.c
@@ -373,7 +373,7 @@ static NSInteger showOpenSavePanel(
* assertion error.
*/
- if ( osVersion >= 101400 && osVersion < 120000) {
+ if ( osVersion > 101400 && osVersion < 120000) {
modalReturnCode = [panel runModal];
} else {
modalReturnCode = [NSApp runModalForWindow:panel];