From 535685742a41fd9b7e3e59ba725d621ea8a89add Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Fri, 14 Mar 2014 10:51:34 -0400 Subject: [PATCH] window: Export is_title_onscreen and shove_title_onscreen as well This was fixed in the master version of the commit, but I forgot to squash it on the Wayland branch. --- src/core/window-private.h | 3 --- src/meta/window.h | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/window-private.h b/src/core/window-private.h index aa5525ee2..52132be65 100644 --- a/src/core/window-private.h +++ b/src/core/window-private.h @@ -634,9 +634,6 @@ void meta_window_show_menu (MetaWindow *window, int button, guint32 timestamp); -gboolean meta_window_titlebar_is_onscreen (MetaWindow *window); -void meta_window_shove_titlebar_onscreen (MetaWindow *window); - void meta_window_set_gravity (MetaWindow *window, int gravity); diff --git a/src/meta/window.h b/src/meta/window.h index e979d7bb8..ca67bf0d6 100644 --- a/src/meta/window.h +++ b/src/meta/window.h @@ -263,4 +263,7 @@ gboolean meta_window_is_above (MetaWindow *window); gboolean meta_window_allows_move (MetaWindow *window); gboolean meta_window_allows_resize (MetaWindow *window); +gboolean meta_window_titlebar_is_onscreen (MetaWindow *window); +void meta_window_shove_titlebar_onscreen (MetaWindow *window); + #endif