summaryrefslogtreecommitdiff
path: root/src/gui/panels/regedit.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-07-28 16:51:16 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-07-28 16:51:16 (GMT)
commit16ce1225f1faf51d7cb8eba4f7fb8b5ec2fac2a2 (patch)
treebd21d3b992f694c6402bda0864be37a1fc71668a /src/gui/panels/regedit.c
parente0dac33fc96a338e13547af3edfc5d4e914b67a2 (diff)
Replaced all calls to the deprecated gtk_menu_popup() function.
Diffstat (limited to 'src/gui/panels/regedit.c')
-rw-r--r--src/gui/panels/regedit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/panels/regedit.c b/src/gui/panels/regedit.c
index 501bd2f..0975c9e 100644
--- a/src/gui/panels/regedit.c
+++ b/src/gui/panels/regedit.c
@@ -911,7 +911,7 @@ static bool is_param_filtered(GRegeditPanel *panel, const char *name)
static gboolean on_button_press_over_params(GtkWidget *widget, GdkEventButton *event, GRegeditPanel *panel)
{
if (event->button == 3)
- gtk_menu_popup(panel->menu, NULL, NULL, NULL, NULL, event->button, event->time);
+ gtk_menu_popup_at_pointer(panel->menu, (GdkEvent *)event);
return FALSE;