diff options
Diffstat (limited to 'Tools/pynche/ListViewer.py')
-rw-r--r-- | Tools/pynche/ListViewer.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Tools/pynche/ListViewer.py b/Tools/pynche/ListViewer.py index 8c8a6ee..9ba2a53 100644 --- a/Tools/pynche/ListViewer.py +++ b/Tools/pynche/ListViewer.py @@ -21,6 +21,7 @@ import ColorDB class ListViewer: def __init__(self, switchboard, parent=None): self.__sb = switchboard + optiondb = switchboard.optiondb() self.__lastbox = None self.__dontcenter = 0 # GUI @@ -76,7 +77,7 @@ class ListViewer: # # Update on click self.__uoc = BooleanVar() - self.__uoc.set(1) + self.__uoc.set(optiondb.get('UPONCLICK', 1)) self.__uocbtn = Checkbutton(root, text='Update on Click', variable=self.__uoc, @@ -160,3 +161,6 @@ class ListViewer: ig, ig, ig, y2 = canvas.coords(self.__bboxes[-1]) h = int(canvas['height']) * 0.5 canvas.yview('moveto', (y1-h) / y2) + + def save_options(self, optiondb): + optiondb['UPONCLICK'] = self.__uoc.get() |