Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fb3e54f

Browse files
committed
made 7-bit-clean.
1 parent dc3c617 commit fb3e54f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Mac/IDE scripts/Widget demos/WidgetTest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def cancel():
4646
window.button = W.Button((-70, 10, 60, 16), "Close", callback)
4747

4848
# a checkbox
49-
window.ch = W.CheckBox((10, 130, 160, 16), "Check (command §)", checkcallback)
49+
window.ch = W.CheckBox((10, 130, 160, 16), "Check (command \xa4)", checkcallback)
5050

5151
# set of radio buttons (should become easier/nicer)
5252
thebuttons = []
@@ -65,7 +65,7 @@ def cancel():
6565
window.static = W.TextBox((10, 260, 110, 16), "Schtatic")
6666

6767
# bind some keystrokes to functions
68-
window.bind('cmd§', window.ch.push)
68+
window.bind('cmd\xa4', window.ch.push)
6969
window.bind('cmd1', window.r1.push)
7070
window.bind('cmd2', window.r2.push)
7171
window.bind('cmd3', window.r3.push)

0 commit comments

Comments
 (0)