Avoid using deprectated gtk_menu_popup in Gtk 3.22+

Thanks to @f1ixx for the tip. Fixes #144.
This commit is contained in:
Alexandru Csete 2020-04-04 13:33:48 +02:00
parent 994af74651
commit aac0beaeab

View file

@ -1220,6 +1220,11 @@ void gtk_sat_module_popup(GtkSatModule * module)
gtk_widget_show_all(menu);
/* gtk_menu_popup got deprecated in 3.22, first available in Ubuntu 18.04 */
#if GTK_MINOR_VERSION < 22
gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL,
0, gdk_event_get_time(NULL));
#else
gtk_menu_popup_at_pointer(GTK_MENU(menu), NULL);
#endif
}