mirror of
https://github.com/csete/gpredict
synced 2026-08-13 17:39:46 -04:00
Avoid using deprectated gtk_menu_popup in Gtk 3.22+
Thanks to @f1ixx for the tip. Fixes #144.
This commit is contained in:
parent
994af74651
commit
aac0beaeab
1 changed files with 5 additions and 0 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue