Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Archive
gcompris
Commits
2c77c9ce
Commit
2c77c9ce
authored
Aug 14, 2005
by
Yves Combe
Browse files
Fix stupid inversion bug in tuxpaint configuration.
parent
73e37f51
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
2c77c9ce
2005-08-15 Yves Combe <yves@ycombe.net>
Fix stupid inversion bug in tuxpaint configuration.
* src/boards/python/tuxpaint.py:
2005-08-14 Yves Combe <yves@ycombe.net>
pass configuartion sample into pythontest
...
...
src/boards/python/tuxpaint.py
View file @
2c77c9ce
...
...
@@ -173,10 +173,10 @@ class Gcompris_tuxpaint:
stamps
.
connect
(
"toggled"
,
self
.
stamps_changed
)
self
.
stamps_control
=
gcompris
.
boolean_box
(
'Disable stamps control'
,
'disable_stamps_control'
,
self
.
configuration
(
'disable_stamps_control'
))
self
.
stamps_control
.
set_sensitive
(
self
.
configuration
(
'disable_stamps'
))
self
.
stamps_control
.
set_sensitive
(
not
self
.
configuration
(
'disable_stamps'
))
def
stamps_changed
(
self
,
button
):
self
.
stamps_control
.
set_sensitive
(
button
.
get_active
())
self
.
stamps_control
.
set_sensitive
(
not
button
.
get_active
())
def
apply_callback
(
self
,
table
):
print
table
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment