Don't emit a nonexisting signal

The signal is called "popdown", not "podown".
This commit is contained in:
Matthias Clasen 2011-07-17 18:45:46 -04:00
parent 25a4e8e7de
commit dc2ae6c0a5

View File

@ -118,7 +118,7 @@ gtk_scale_button_accessible_do_action (AtkAction *action,
g_signal_emit_by_name (widget, "popup");
return TRUE;
case 1:
g_signal_emit_by_name (widget, "podown");
g_signal_emit_by_name (widget, "popdown");
return TRUE;
default:
return FALSE;