1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Restored Save Game Geometry option for Pillowless installs.

This commit is contained in:
Joe R 2022-12-28 10:20:12 -05:00
parent ccd250eb14
commit ca7a86bb5d

View file

@ -743,6 +743,11 @@ class PysolMenubarTkCommon:
createToolbarMenu(self, submenu)
submenu = MfxMenu(menu, label=n_("Stat&usbar"))
createStatusbarMenu(self, submenu)
if not USE_PIL:
menu.add_checkbutton(
label=n_("Save games &geometry"),
variable=self.tkopt.save_games_geometry,
command=self.mOptSaveGamesGeometry)
menu.add_checkbutton(
label=n_("&Demo logo"), variable=self.tkopt.demo_logo,
command=self.mOptDemoLogo)