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

Selected date format is saved and persists.

This commit is contained in:
Joe R 2021-11-26 19:13:02 -05:00
parent 7f7c710973
commit 99bc75f4c1
2 changed files with 10 additions and 3 deletions

View file

@ -107,6 +107,7 @@ last_gameid = integer
game_holded = integer
wm_maximized = boolean
splashscreen = boolean
date_format = string
mouse_type = string
mouse_undo = boolean
negative_bottom = boolean
@ -253,6 +254,7 @@ class Options:
('game_holded', 'int'),
('wm_maximized', 'bool'),
('splashscreen', 'bool'),
('date_format', 'str'),
('mouse_type', 'str'),
('mouse_undo', 'bool'),
('negative_bottom', 'bool'),
@ -345,6 +347,7 @@ class Options:
self.num_cards = False
self.helpbar = False
self.splashscreen = True
self.date_format = '%m-%d'
self.mouse_button1 = 1
self.mouse_button2 = 2
self.mouse_button3 = 3

View file

@ -928,14 +928,14 @@ class ProgressionFrame(ttk.Frame):
label_frame = ttk.LabelFrame(right_frame, text=_('Date format'))
label_frame.pack(side='top', fill='x', pady=5)
self.date_format = tkinter.StringVar()
self.date_format.set('%m-%d')
self.date_format.set(self.app.opt.date_format)
b = ttk.Radiobutton(label_frame, text=_('MM-DD'),
command=self.updateGraph,
command=self.updateDateFormat,
variable=self.date_format,
value='%m-%d')
b.pack(fill='x', expand=True, padx=3, pady=1)
b = ttk.Radiobutton(label_frame, text=_('DD-MM'),
command=self.updateGraph,
command=self.updateDateFormat,
variable=self.date_format,
value='%d-%m')
b.pack(fill='x', expand=True, padx=3, pady=1)
@ -1006,6 +1006,10 @@ class ProgressionFrame(ttk.Frame):
self.updateGraph()
def updateDateFormat(self, *args):
self.app.opt.date_format = self.date_format.get()
self.updateGraph()
def updateGraph(self, *args):
interval = self.variable.get()
canvas = self.canvas