Example #1
0
void
meta_core_shade (Display *xdisplay,
                 Window   frame_xwindow,
                 guint32  timestamp)
{
  MetaWindow *window = get_window (xdisplay, frame_xwindow);
  
  meta_window_shade (window, timestamp);
}
Example #2
0
File: core.c Project: Big1av/muffin
LOCAL_SYMBOL void
meta_core_shade (Display *xdisplay,
                 Window   frame_xwindow,
                 guint32  timestamp)
{
  MetaWindow *window = get_window (xdisplay, frame_xwindow);
  
  meta_screen_hide_hud_and_preview (window->screen);

  meta_window_shade (window, timestamp);
}