Skip to content

Commit 645e685

Browse files
Fixing comment, no change to function.
1 parent c91b0e2 commit 645e685

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/smart_listbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ def callback(values):
1313
string = ''.join(values)
1414
value_label.config(text=string)
1515

16-
# specify a callback, then specify the normal spinbox options (such as "from_", "to", and "increment"
1716
tk.Label(root, text='selectmode="browse"').grid(row=1, column=0)
1817
tk_tools.SmartListBox(root, on_select_callback=callback, selectmode='browse',
1918
options=['1', '2', '3']).grid(row=2, column=0)
19+
2020
tk.Label(root, text='selectmode="multiple"').grid(row=1, column=0)
2121
tk_tools.SmartListBox(root, on_select_callback=callback, selectmode='multiple',
2222
options=['a', 'b', 'c']).grid(row=4, column=0)

0 commit comments

Comments
 (0)