testgtk: Update cursor theme on size change

We were connecting to the wrong signal, so we were not picking
up all changes to the spin button value.
This commit is contained in:
Matthias Clasen 2015-04-05 13:28:26 -04:00
parent d94d2efc43
commit 386534ef1f

View File

@ -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);
}