diff --git a/pysollib/tile/selectcardset.py b/pysollib/tile/selectcardset.py index 1683cf49..ec8104cb 100644 --- a/pysollib/tile/selectcardset.py +++ b/pysollib/tile/selectcardset.py @@ -353,7 +353,6 @@ class SelectCardsetDialogWithPreview(MfxDialog): check = ttk.Checkbutton( size_frame, text=_('Auto scaling'), variable=self.auto_scale, - takefocus=False, command=self._updateAutoScale ) check.grid(row=5, column=0, columnspan=2, sticky='ew', @@ -364,7 +363,6 @@ class SelectCardsetDialogWithPreview(MfxDialog): self.aspect_check = ttk.Checkbutton( size_frame, text=_('Preserve aspect ratio'), variable=self.preserve_aspect, - takefocus=False, # command=self._updateScale ) self.aspect_check.grid(row=6, column=0, sticky='ew', diff --git a/pysollib/tile/soundoptionsdialog.py b/pysollib/tile/soundoptionsdialog.py index 55bc3a88..87993102 100644 --- a/pysollib/tile/soundoptionsdialog.py +++ b/pysollib/tile/soundoptionsdialog.py @@ -109,7 +109,7 @@ class SoundOptionsDialog(MfxDialog): ttk.Label(frame, text=_('Sample volume:'), anchor='w' ).grid(row=row, column=0, sticky='ew') w = PysolScale(frame, from_=0, to=128, resolution=1, - orient='horizontal', takefocus=0, + orient='horizontal', length="3i", # label=_('Sample volume'), variable=self.sample_volume) w.grid(row=row, column=1, sticky='w', padx=5) @@ -122,7 +122,7 @@ class SoundOptionsDialog(MfxDialog): ttk.Label(frame, text=_('Music volume:'), anchor='w' ).grid(row=row, column=0, sticky='ew') w = PysolScale(frame, from_=0, to=128, resolution=1, - orient='horizontal', takefocus=0, + orient='horizontal', length="3i", # label=_('Music volume'), variable=self.music_volume) w.grid(row=row, column=1, sticky='w', padx=5) diff --git a/pysollib/tile/timeoutsdialog.py b/pysollib/tile/timeoutsdialog.py index 85aad4d7..1001387a 100644 --- a/pysollib/tile/timeoutsdialog.py +++ b/pysollib/tile/timeoutsdialog.py @@ -72,7 +72,7 @@ class TimeoutsDialog(MfxDialog): row=row, column=0, sticky='we') widget = PysolScale(lframe, from_=0.2, to=9.9, value=var.get(), resolution=0.1, orient='horizontal', - length="3i", variable=var, takefocus=0) + length="3i", variable=var) widget.grid(row=row, column=1) row += 1 # diff --git a/pysollib/tile/wizarddialog.py b/pysollib/tile/wizarddialog.py index fda7dc8f..ec28920c 100644 --- a/pysollib/tile/wizarddialog.py +++ b/pysollib/tile/wizarddialog.py @@ -105,8 +105,7 @@ class WizardDialog(MfxDialog): elif w.widget == 'check': if w.variable is None: w.variable = tkinter.BooleanVar() - ch = ttk.Checkbutton(frame, variable=w.variable, - takefocus=False) + ch = ttk.Checkbutton(frame, variable=w.variable) ch.grid(row=row, column=1, sticky='ew', padx=2, pady=2) if w.current_value is None: diff --git a/pysollib/tk/selectcardset.py b/pysollib/tk/selectcardset.py index 112c53b8..41dea1e5 100644 --- a/pysollib/tk/selectcardset.py +++ b/pysollib/tk/selectcardset.py @@ -271,7 +271,6 @@ class SelectCardsetDialogWithPreview(MfxDialog): check = tkinter.Checkbutton( left_frame, text=_('Auto scaling'), variable=self.auto_scale, - takefocus=False, command=self._updateAutoScale ) check.grid(row=3, column=0, columnspan=2, sticky='w', @@ -282,7 +281,6 @@ class SelectCardsetDialogWithPreview(MfxDialog): self.aspect_check = tkinter.Checkbutton( left_frame, text=_('Preserve aspect ratio'), variable=self.preserve_aspect, - takefocus=False, # command=self._updateScale ) self.aspect_check.grid(row=4, column=0, sticky='w', diff --git a/pysollib/tk/soundoptionsdialog.py b/pysollib/tk/soundoptionsdialog.py index 031f1b41..6c641bc0 100644 --- a/pysollib/tk/soundoptionsdialog.py +++ b/pysollib/tk/soundoptionsdialog.py @@ -109,7 +109,7 @@ class SoundOptionsDialog(MfxDialog): w = tkinter.Label(frame, text=_('Sample volume:')) w.grid(row=row, column=0, sticky='w', padx=5) w = tkinter.Scale(frame, from_=0, to=128, resolution=1, - orient='horizontal', takefocus=0, + orient='horizontal', length="3i", # label=_('Sample volume'), variable=self.sample_volume) w.grid(row=row, column=1, sticky='ew', padx=5) @@ -117,7 +117,7 @@ class SoundOptionsDialog(MfxDialog): w = tkinter.Label(frame, text=_('Music volume:')) w.grid(row=row, column=0, sticky='w', padx=5) w = tkinter.Scale(frame, from_=0, to=128, resolution=1, - orient='horizontal', takefocus=0, + orient='horizontal', length="3i", # label=_('Music volume'), variable=self.music_volume) w.grid(row=row, column=1, sticky='ew', padx=5) diff --git a/pysollib/tk/timeoutsdialog.py b/pysollib/tk/timeoutsdialog.py index e8e50fc8..c04bdc2c 100644 --- a/pysollib/tk/timeoutsdialog.py +++ b/pysollib/tk/timeoutsdialog.py @@ -71,7 +71,7 @@ class TimeoutsDialog(MfxDialog): ).grid(row=row, column=0, sticky='we') widget = tkinter.Scale(frame, from_=0.2, to=9.9, resolution=0.1, orient='horizontal', - length="3i", variable=var, takefocus=0) + length="3i", variable=var) widget.grid(row=row, column=1) row += 1 # diff --git a/pysollib/tk/wizarddialog.py b/pysollib/tk/wizarddialog.py index 36fdaad1..b85d03dc 100644 --- a/pysollib/tk/wizarddialog.py +++ b/pysollib/tk/wizarddialog.py @@ -94,7 +94,7 @@ class WizardDialog(MfxDialog): if w.variable is None: w.variable = tkinter.BooleanVar() ch = tkinter.Checkbutton(frame, variable=w.variable, - takefocus=False, anchor='w') + anchor='w') ch.grid(row=row, column=1, sticky='ew', padx=2, pady=2) if w.current_value is None: