From 6a7a3f7b9a0dc150892c55e13c1a81dccf3f0416 Mon Sep 17 00:00:00 2001 From: emkael Date: Sun, 10 Nov 2019 10:10:17 +0100 Subject: NotifyNumericVar now properly notifies dirty state --- jfr_playoff/gui/variables.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'jfr_playoff') diff --git a/jfr_playoff/gui/variables.py b/jfr_playoff/gui/variables.py index ff65207..9dcbff2 100644 --- a/jfr_playoff/gui/variables.py +++ b/jfr_playoff/gui/variables.py @@ -27,4 +27,6 @@ class NotifyIntVar(NotifyVar, tk.IntVar): pass class NotifyNumericVar(NumericVar, NotifyVar): - pass + def __init__(self, *args, **kwargs): + NotifyVar.__init__(self, *args, **kwargs) + NumericVar.__init__(self, *args, **kwargs) -- cgit v1.2.3