1
0
Fork 0
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:
Joe R 2022-09-12 20:51:36 -04:00
parent ad67cb642b
commit c81ccfa186

View file

@ -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
#