gtkmm: use get_visible() instead of deprecated Gtk::Widget::is_visible()

This commit is contained in:
Mads Kiilerich 2022-01-26 21:21:06 +01:00 committed by Robin Gareus
parent d52c727ec5
commit a86aa31747
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
29 changed files with 45 additions and 45 deletions

View file

@ -143,7 +143,7 @@ PersistentTooltip::show ()
set_tip (_tip);
if (!_window->is_visible ()) {
if (!_window->get_visible ()) {
int rx, ry;
int sw = gdk_screen_width ();