Possible a fix for closing the program

"File"->"Exit" or [Alt]+[X] don't closed the program, only the windows.
I think, this should fix this bug. Don't know if it really works. Haven't tested it, because I have no experience with Groovy. Only with Java.
This commit is contained in:
theuserbl 2015-03-28 13:33:13 +01:00
parent 1e9a17d175
commit 3f559f1dc5

View File

@ -50,7 +50,7 @@ actions {
mnemonic:'x',
accelerator:'alt X',
shortDescription:'Quit this program',
closure:{ mainFrame.dispose() }
closure:{ System.exit(0) }
)
action(
id:'copyAction',