From 525f424c9159f19dcb0e144336431cf03d1b6ebf Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Wed, 17 Apr 2013 13:08:33 +0200 Subject: [PATCH] Handle edges in window.c --- openbox/window.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openbox/window.c b/openbox/window.c index 51806f9c..3d231439 100644 --- a/openbox/window.c +++ b/openbox/window.c @@ -24,6 +24,7 @@ #include "frame.h" #include "openbox.h" #include "prompt.h" +#include "edges.h" #include "debug.h" #include "grab.h" #include "obt/prop.h" @@ -62,6 +63,8 @@ Window window_top(ObWindow *self) return WINDOW_AS_INTERNAL(self)->window; case OB_WINDOW_CLASS_PROMPT: return WINDOW_AS_PROMPT(self)->super.window; + case OB_WINDOW_CLASS_EDGE: + return WINDOW_AS_EDGE(self)->win; } g_assert_not_reached(); return None; @@ -74,6 +77,7 @@ ObStackingLayer window_layer(ObWindow *self) return config_dock_layer; case OB_WINDOW_CLASS_CLIENT: return ((ObClient*)self)->layer; + case OB_WINDOW_CLASS_EDGE: case OB_WINDOW_CLASS_MENUFRAME: case OB_WINDOW_CLASS_INTERNAL: return OB_STACKING_LAYER_INTERNAL; -- 2.39.2