Mercurial > cgi-bin > hgweb.cgi > ImagePrep
view src/name/blackcap/imageprep/Osdep.kt.mac.osdep @ 15:fad32eda667f
Fix ImageWriter leak.
author | David Barts <n5jrn@me.com> |
---|---|
date | Sun, 19 Jul 2020 13:49:23 -0700 |
parents | 0bded24f746e |
children | 5fa5d15b4a7b |
line wrap: on
line source
/* * OS-dependent code, Mac version. */ package name.blackcap.imageprep import com.apple.eawt.AboutHandler import com.apple.eawt.PreferencesHandler import com.apple.eawt.QuitStrategy fun setMacMenus() { com.apple.eawt.Application.getApplication().run { setAboutHandler(AboutHandler { showAboutDialog() }) setQuitStrategy(QuitStrategy.CLOSE_ALL_WINDOWS) } }