diff options
author | culler <culler> | 2021-11-02 18:16:19 (GMT) |
---|---|---|
committer | culler <culler> | 2021-11-02 18:16:19 (GMT) |
commit | a64b61d17e86fcc344278926324c08a7a0d9ccbb (patch) | |
tree | 0800d16794c01ded75f312bc3d11ae532fcd9832 /macosx/tkMacOSXDialog.c | |
parent | 288cea6827428e424632326901e73d2807cb2135 (diff) | |
download | tk-a64b61d17e86fcc344278926324c08a7a0d9ccbb.zip tk-a64b61d17e86fcc344278926324c08a7a0d9ccbb.tar.gz tk-a64b61d17e86fcc344278926324c08a7a0d9ccbb.tar.bz2 |
Add missing call to [parent endSheet].
Diffstat (limited to 'macosx/tkMacOSXDialog.c')
-rw-r--r-- | macosx/tkMacOSXDialog.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/macosx/tkMacOSXDialog.c b/macosx/tkMacOSXDialog.c index b6f4503..f6b8357 100644 --- a/macosx/tkMacOSXDialog.c +++ b/macosx/tkMacOSXDialog.c @@ -379,6 +379,7 @@ static NSInteger showOpenSavePanel( [NSApp tkFilePanelDidEnd:panel returnCode:modalReturnCode contextInfo:callbackInfo ]; + [parent endSheet:panel]; } } else { modalReturnCode = [panel runModal]; |