aboutsummaryrefslogtreecommitdiffstats
path: root/src/popup-commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/popup-commands.c')
-rw-r--r--src/popup-commands.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/popup-commands.c b/src/popup-commands.c
index 354713783..490982351 100644
--- a/src/popup-commands.c
+++ b/src/popup-commands.c
@@ -31,12 +31,8 @@ static EphyEmbedEvent *
get_event_info (EphyWindow *window)
{
EphyEmbedEvent *info;
- EphyTab *tab;
-
- tab = ephy_window_get_active_tab (window);
- g_return_val_if_fail (tab != NULL, NULL);
- info = ephy_tab_get_event (tab);
+ info = EPHY_EMBED_EVENT (g_object_get_data (window, "context_event"));
g_return_val_if_fail (info != NULL, NULL);
return info;