# HG changeset patch # User Tomasz Mon # Date 1195222807 -3600 # Node ID fed07be6b7086da6b374358f19e432b590e0af17 # Parent 8be86c0b040e21e71146bfe0649643ff009a9687 every other menu shows on button press.. diff -r 8be86c0b040e -r fed07be6b708 src/audacious/ui_skinned_textbox.c --- a/src/audacious/ui_skinned_textbox.c Fri Nov 16 13:28:52 2007 +0100 +++ b/src/audacious/ui_skinned_textbox.c Fri Nov 16 15:20:07 2007 +0100 @@ -363,6 +363,8 @@ } else g_signal_emit(widget, textbox_signals[CLICKED], 0); + } else if (event->button == 3) { + g_signal_emit(widget, textbox_signals[RIGHT_CLICKED], 0); } else priv->is_dragging = FALSE; } else if (event->type == GDK_2BUTTON_PRESS) { @@ -382,8 +384,6 @@ if (event->button == 1) { priv->is_dragging = FALSE; - } else if (event->button == 3) { - g_signal_emit(widget, textbox_signals[RIGHT_CLICKED], 0); } return TRUE;