Mercurial > cgi-bin > hgweb.cgi > JpegWasher
annotate src/name/blackcap/exifwasher/Osdep.kt.mac.osdep @ 6:aafc9c127c7b
Fix many bugs; get settings (apparently) working.
author | David Barts <n5jrn@me.com> |
---|---|
date | Thu, 09 Apr 2020 22:29:48 -0700 |
parents | ba5dc14652da |
children | 0a106e9b91b4 |
rev | line source |
---|---|
4 | 1 /* |
2 * OS-dependent code, Mac version. | |
3 */ | |
4 package name.blackcap.exifwasher | |
5 | |
6 import com.apple.eawt.AboutHandler | |
7 import com.apple.eawt.PreferencesHandler | |
8 | |
9 fun setMacMenus() { | |
6
aafc9c127c7b
Fix many bugs; get settings (apparently) working.
David Barts <n5jrn@me.com>
parents:
4
diff
changeset
|
10 com.apple.eawt.Application.getApplication().run { |
4 | 11 setAboutHandler(AboutHandler { showAboutDialog() }) |
12 setPreferencesHandler( | |
13 PreferencesHandler { Application.settingsDialog.setVisible(true) }) | |
14 } | |
15 } |