summarylogtreecommitdiffstats
path: root/patch-filter_panels.adb
blob: b9b02b2442d75948b812164abb8480069fe151d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
--- gps-2021-20210701-19B6B-src-pristine/kernel/src/filter_panels.adb
+++ gps-2021-20210701-19B6B-src/kernel/src/filter_panels.adb
@@ -26,6 +26,7 @@
 with Gtk.GEntry;               use Gtk.GEntry;
 with Gtk.Menu_Item;            use Gtk.Menu_Item;
 with Gtk.Separator_Menu_Item;  use Gtk.Separator_Menu_Item;
+with Gtk.Main;
 
 with Gtkada.Handlers;          use Gtkada.Handlers;
 
@@ -65,8 +66,7 @@
 
    procedure On_Pattern_Config_Menu
      (Self  : access GObject_Record'Class;
-      Pos   : Gtk_Entry_Icon_Position;
-      Event : Gdk_Event);
+      Pos   : Gtk_Entry_Icon_Position);
    --  Creates the popup menu to configure the filter settings.
 
    function On_Filter_Focus_Out
@@ -400,13 +400,13 @@
 
    procedure On_Pattern_Config_Menu
       (Self  : access GObject_Record'Class;
-       Pos   : Gtk_Entry_Icon_Position;
-       Event : Gdk_Event)
+       Pos   : Gtk_Entry_Icon_Position)
    is
       pragma Unreferenced (Pos);  --  unreliable with gtk+ 3.8
       use Glib;
 
       Panel : constant Filter_Panel := Filter_Panel (Self);
+      Event : constant Gdk_Event := Gtk.Main.Get_Current_Event;
 
       procedure Func
         (Menu    : not null access Gtk_Menu_Record'Class;
@@ -425,7 +425,7 @@
       end Func;
 
    begin
-      if Panel.Pattern.Get_Icon_Position (Event.Button) =
+      if Panel.Pattern.Get_Icon_Position (Event) =
         Gtk_Entry_Icon_Primary
       then
          Panel.Pattern_Config_Menu.Show_All;