mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Added Alt+F4 binding for certain environments
This commit is contained in:
parent
ad67cb642b
commit
c81ccfa186
1 changed files with 4 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
import math
|
||||
import os
|
||||
import platform
|
||||
import re
|
||||
import sys
|
||||
|
||||
|
@ -860,6 +861,9 @@ class PysolMenubarTkCommon:
|
|||
self._bindKey(ctrl, "Up", self.mSelectPrevGameById)
|
||||
self._bindKey(ctrl, "Down", self.mSelectNextGameById)
|
||||
|
||||
if os.name == 'posix' and platform.system() != 'Darwin':
|
||||
self._bindKey('Alt-', 'F4', self.mQuit)
|
||||
|
||||
#
|
||||
# key binding utility
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue