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

Corrections to status bar variables in Kivy.

This commit is contained in:
Joe R 2022-07-28 18:19:34 -04:00
parent ed811016de
commit 6fe410ac24
3 changed files with 20 additions and 2 deletions

View file

@ -1346,8 +1346,6 @@ class PysolMenubarTk:
tkopt.toolbar_size.set(opt.toolbar_size)
tkopt.toolbar_relief.set(opt.toolbar_relief)
tkopt.statusbar.set(opt.statusbar)
tkopt.num_cards.set(opt.num_cards)
tkopt.helpbar.set(opt.helpbar)
tkopt.save_games_geometry.set(opt.save_games_geometry)
tkopt.demo_logo.set(opt.demo_logo)
tkopt.splashscreen.set(opt.splashscreen)

View file

@ -65,3 +65,13 @@ TOOLBAR_BUTTONS = (
"quit",
"player",
)
STATUSBAR_ITEMS = (
('stuck', "'You Are Stuck' indicator"),
('time', 'Playing time'),
('moves', 'Moves/Total moves'),
('gamenumber', 'Game number'),
('stats', 'Games played: won/lost'),
('info', 'Number of cards'),
('help', 'Help info')
)

View file

@ -53,3 +53,13 @@ TOOLBAR_BUTTONS = (
"quit",
"player",
)
STATUSBAR_ITEMS = (
('stuck', "'You Are Stuck' indicator"),
('time', 'Playing time'),
('moves', 'Moves/Total moves'),
('gamenumber', 'Game number'),
('stats', 'Games played: won/lost'),
('info', 'Number of cards'),
('help', 'Help info')
)