entry: Fix *-icon-clicked handler

Commit ffe4eaf00d broke the handler by fetching the instance private
from the wrong actor - as we don't use the ::primary-icon-clicked signal,
and the ::secondary-icon-clicked signal still works by accident, nobody
noticed until now ...

https://bugzilla.gnome.org/show_bug.cgi?id=782190
This commit is contained in:
Florian Müllner 2017-05-05 00:27:32 +02:00
parent e1e4ce7049
commit 65b9369aaf

View File

@ -1142,7 +1142,7 @@ _st_entry_icon_press_cb (ClutterActor *actor,
ClutterButtonEvent *event,
StEntry *entry)
{
StEntryPrivate *priv = ST_ENTRY_PRIV (actor);
StEntryPrivate *priv = ST_ENTRY_PRIV (entry);
if (actor == priv->primary_icon)
g_signal_emit (entry, entry_signals[PRIMARY_ICON_CLICKED], 0);