summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/tkinter')
-rw-r--r--Lib/tkinter/ttk.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py
index c474e60..cbaad76 100644
--- a/Lib/tkinter/ttk.py
+++ b/Lib/tkinter/ttk.py
@@ -1577,20 +1577,17 @@ class LabeledScale(Frame):
self.label['text'] = newval
self.after_idle(adjust_label)
-
- def _get_value(self):
+ @property
+ def value(self):
"""Return current scale value."""
return self._variable.get()
-
- def _set_value(self, val):
+ @value.setter
+ def value(self, val):
"""Set new scale value."""
self._variable.set(val)
- value = property(_get_value, _set_value)
-
-
class OptionMenu(Menubutton):
"""Themed OptionMenu, based after tkinter's OptionMenu, which allows
the user to select a value from a menu."""