projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d94d2ef
)
testgtk: Update cursor theme on size change
author
Matthias Clasen
<mclasen@redhat.com>
Sun, 5 Apr 2015 17:28:26 +0000
(13:28 -0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Sun, 5 Apr 2015 17:28:26 +0000
(13:28 -0400)
We were connecting to the wrong signal, so we were not picking
up all changes to the spin button value.
tests/testgtk.c
patch
|
blob
|
history
diff --git
a/tests/testgtk.c
b/tests/testgtk.c
index 8aa6dcd7024296415e54bd89f0c0bea634b0a1e3..707b958f5b7f95dbcef81e3121a69e2725f09817 100644
(file)
--- a/
tests/testgtk.c
+++ b/
tests/testgtk.c
@@
-5006,7
+5006,7
@@
create_cursors (GtkWidget *widget)
g_signal_connect (entry, "changed",
G_CALLBACK (change_cursor_theme), hbox);
- g_signal_connect (size, "
changed",
+ g_signal_connect (size, "
value-changed",
G_CALLBACK (change_cursor_theme), hbox);
}