Change upper -> lower -case
This commit is contained in:
parent
2c640dea86
commit
77402c9a0f
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ def combobox_used(event):
|
||||||
str_value = tk.StringVar()
|
str_value = tk.StringVar()
|
||||||
my_combobox = ttk.Combobox(width=30, textvariable=str_value)
|
my_combobox = ttk.Combobox(width=30, textvariable=str_value)
|
||||||
my_combobox.bind(sequence='<<ComboboxSelect>>', func=combobox_used)
|
my_combobox.bind(sequence='<<ComboboxSelect>>', func=combobox_used)
|
||||||
my_combobox['values'] = ('Hast', 'du', 'etwas', 'Zeit', 'für', 'mich?')
|
my_combobox['values'] = ('Hast', 'du', 'etwas', 'zeit', 'für', 'mich?')
|
||||||
my_combobox.pack(pady=(5, 108))
|
my_combobox.pack(pady=(5, 108))
|
||||||
|
|
||||||
# Slideshow presenter
|
# Slideshow presenter
|
||||||
|
|
Loading…
Reference in a new issue