mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Fix some controls being unselectable by tab
This commit is contained in:
parent
f4dec3ed16
commit
cadf8b2084
8 changed files with 8 additions and 13 deletions
|
@ -353,7 +353,6 @@ class SelectCardsetDialogWithPreview(MfxDialog):
|
||||||
check = ttk.Checkbutton(
|
check = ttk.Checkbutton(
|
||||||
size_frame, text=_('Auto scaling'),
|
size_frame, text=_('Auto scaling'),
|
||||||
variable=self.auto_scale,
|
variable=self.auto_scale,
|
||||||
takefocus=False,
|
|
||||||
command=self._updateAutoScale
|
command=self._updateAutoScale
|
||||||
)
|
)
|
||||||
check.grid(row=5, column=0, columnspan=2, sticky='ew',
|
check.grid(row=5, column=0, columnspan=2, sticky='ew',
|
||||||
|
@ -364,7 +363,6 @@ class SelectCardsetDialogWithPreview(MfxDialog):
|
||||||
self.aspect_check = ttk.Checkbutton(
|
self.aspect_check = ttk.Checkbutton(
|
||||||
size_frame, text=_('Preserve aspect ratio'),
|
size_frame, text=_('Preserve aspect ratio'),
|
||||||
variable=self.preserve_aspect,
|
variable=self.preserve_aspect,
|
||||||
takefocus=False,
|
|
||||||
# command=self._updateScale
|
# command=self._updateScale
|
||||||
)
|
)
|
||||||
self.aspect_check.grid(row=6, column=0, sticky='ew',
|
self.aspect_check.grid(row=6, column=0, sticky='ew',
|
||||||
|
|
|
@ -109,7 +109,7 @@ class SoundOptionsDialog(MfxDialog):
|
||||||
ttk.Label(frame, text=_('Sample volume:'), anchor='w'
|
ttk.Label(frame, text=_('Sample volume:'), anchor='w'
|
||||||
).grid(row=row, column=0, sticky='ew')
|
).grid(row=row, column=0, sticky='ew')
|
||||||
w = PysolScale(frame, from_=0, to=128, resolution=1,
|
w = PysolScale(frame, from_=0, to=128, resolution=1,
|
||||||
orient='horizontal', takefocus=0,
|
orient='horizontal',
|
||||||
length="3i", # label=_('Sample volume'),
|
length="3i", # label=_('Sample volume'),
|
||||||
variable=self.sample_volume)
|
variable=self.sample_volume)
|
||||||
w.grid(row=row, column=1, sticky='w', padx=5)
|
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'
|
ttk.Label(frame, text=_('Music volume:'), anchor='w'
|
||||||
).grid(row=row, column=0, sticky='ew')
|
).grid(row=row, column=0, sticky='ew')
|
||||||
w = PysolScale(frame, from_=0, to=128, resolution=1,
|
w = PysolScale(frame, from_=0, to=128, resolution=1,
|
||||||
orient='horizontal', takefocus=0,
|
orient='horizontal',
|
||||||
length="3i", # label=_('Music volume'),
|
length="3i", # label=_('Music volume'),
|
||||||
variable=self.music_volume)
|
variable=self.music_volume)
|
||||||
w.grid(row=row, column=1, sticky='w', padx=5)
|
w.grid(row=row, column=1, sticky='w', padx=5)
|
||||||
|
|
|
@ -72,7 +72,7 @@ class TimeoutsDialog(MfxDialog):
|
||||||
row=row, column=0, sticky='we')
|
row=row, column=0, sticky='we')
|
||||||
widget = PysolScale(lframe, from_=0.2, to=9.9, value=var.get(),
|
widget = PysolScale(lframe, from_=0.2, to=9.9, value=var.get(),
|
||||||
resolution=0.1, orient='horizontal',
|
resolution=0.1, orient='horizontal',
|
||||||
length="3i", variable=var, takefocus=0)
|
length="3i", variable=var)
|
||||||
widget.grid(row=row, column=1)
|
widget.grid(row=row, column=1)
|
||||||
row += 1
|
row += 1
|
||||||
#
|
#
|
||||||
|
|
|
@ -105,8 +105,7 @@ class WizardDialog(MfxDialog):
|
||||||
elif w.widget == 'check':
|
elif w.widget == 'check':
|
||||||
if w.variable is None:
|
if w.variable is None:
|
||||||
w.variable = tkinter.BooleanVar()
|
w.variable = tkinter.BooleanVar()
|
||||||
ch = ttk.Checkbutton(frame, variable=w.variable,
|
ch = ttk.Checkbutton(frame, variable=w.variable)
|
||||||
takefocus=False)
|
|
||||||
ch.grid(row=row, column=1, sticky='ew', padx=2, pady=2)
|
ch.grid(row=row, column=1, sticky='ew', padx=2, pady=2)
|
||||||
|
|
||||||
if w.current_value is None:
|
if w.current_value is None:
|
||||||
|
|
|
@ -271,7 +271,6 @@ class SelectCardsetDialogWithPreview(MfxDialog):
|
||||||
check = tkinter.Checkbutton(
|
check = tkinter.Checkbutton(
|
||||||
left_frame, text=_('Auto scaling'),
|
left_frame, text=_('Auto scaling'),
|
||||||
variable=self.auto_scale,
|
variable=self.auto_scale,
|
||||||
takefocus=False,
|
|
||||||
command=self._updateAutoScale
|
command=self._updateAutoScale
|
||||||
)
|
)
|
||||||
check.grid(row=3, column=0, columnspan=2, sticky='w',
|
check.grid(row=3, column=0, columnspan=2, sticky='w',
|
||||||
|
@ -282,7 +281,6 @@ class SelectCardsetDialogWithPreview(MfxDialog):
|
||||||
self.aspect_check = tkinter.Checkbutton(
|
self.aspect_check = tkinter.Checkbutton(
|
||||||
left_frame, text=_('Preserve aspect ratio'),
|
left_frame, text=_('Preserve aspect ratio'),
|
||||||
variable=self.preserve_aspect,
|
variable=self.preserve_aspect,
|
||||||
takefocus=False,
|
|
||||||
# command=self._updateScale
|
# command=self._updateScale
|
||||||
)
|
)
|
||||||
self.aspect_check.grid(row=4, column=0, sticky='w',
|
self.aspect_check.grid(row=4, column=0, sticky='w',
|
||||||
|
|
|
@ -109,7 +109,7 @@ class SoundOptionsDialog(MfxDialog):
|
||||||
w = tkinter.Label(frame, text=_('Sample volume:'))
|
w = tkinter.Label(frame, text=_('Sample volume:'))
|
||||||
w.grid(row=row, column=0, sticky='w', padx=5)
|
w.grid(row=row, column=0, sticky='w', padx=5)
|
||||||
w = tkinter.Scale(frame, from_=0, to=128, resolution=1,
|
w = tkinter.Scale(frame, from_=0, to=128, resolution=1,
|
||||||
orient='horizontal', takefocus=0,
|
orient='horizontal',
|
||||||
length="3i", # label=_('Sample volume'),
|
length="3i", # label=_('Sample volume'),
|
||||||
variable=self.sample_volume)
|
variable=self.sample_volume)
|
||||||
w.grid(row=row, column=1, sticky='ew', padx=5)
|
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 = tkinter.Label(frame, text=_('Music volume:'))
|
||||||
w.grid(row=row, column=0, sticky='w', padx=5)
|
w.grid(row=row, column=0, sticky='w', padx=5)
|
||||||
w = tkinter.Scale(frame, from_=0, to=128, resolution=1,
|
w = tkinter.Scale(frame, from_=0, to=128, resolution=1,
|
||||||
orient='horizontal', takefocus=0,
|
orient='horizontal',
|
||||||
length="3i", # label=_('Music volume'),
|
length="3i", # label=_('Music volume'),
|
||||||
variable=self.music_volume)
|
variable=self.music_volume)
|
||||||
w.grid(row=row, column=1, sticky='ew', padx=5)
|
w.grid(row=row, column=1, sticky='ew', padx=5)
|
||||||
|
|
|
@ -71,7 +71,7 @@ class TimeoutsDialog(MfxDialog):
|
||||||
).grid(row=row, column=0, sticky='we')
|
).grid(row=row, column=0, sticky='we')
|
||||||
widget = tkinter.Scale(frame, from_=0.2, to=9.9,
|
widget = tkinter.Scale(frame, from_=0.2, to=9.9,
|
||||||
resolution=0.1, orient='horizontal',
|
resolution=0.1, orient='horizontal',
|
||||||
length="3i", variable=var, takefocus=0)
|
length="3i", variable=var)
|
||||||
widget.grid(row=row, column=1)
|
widget.grid(row=row, column=1)
|
||||||
row += 1
|
row += 1
|
||||||
#
|
#
|
||||||
|
|
|
@ -94,7 +94,7 @@ class WizardDialog(MfxDialog):
|
||||||
if w.variable is None:
|
if w.variable is None:
|
||||||
w.variable = tkinter.BooleanVar()
|
w.variable = tkinter.BooleanVar()
|
||||||
ch = tkinter.Checkbutton(frame, variable=w.variable,
|
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)
|
ch.grid(row=row, column=1, sticky='ew', padx=2, pady=2)
|
||||||
|
|
||||||
if w.current_value is None:
|
if w.current_value is None:
|
||||||
|
|
Loading…
Add table
Reference in a new issue