diff options
-rw-r--r-- | src/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/decorator.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c833e4c..51682ae 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -135,7 +135,6 @@ if (BUILD_UNITY) set_target_properties ( unity-window-decorator PROPERTIES INSTALL_RPATH_USE_LINK_PATH 0 - COMPILE_FLAGS ${UNITY_WINDOW_DECORATOR_CFLAGS} ) target_link_libraries (unity-window-decorator diff --git a/src/decorator.c b/src/decorator.c index 294c935..dc562a6 100644 --- a/src/decorator.c +++ b/src/decorator.c @@ -830,6 +830,8 @@ update_default_decorations (GdkScreen *screen) XRenderFreePicture (xdisplay, d.picture); + fprintf (stderr, "extents are %i %i %i %i %i\n", extents.left, extents.right, extents.top, extents.bottom); + decor_quads_to_property (data, GDK_PIXMAP_XID (d.pixmap), &extents, &extents, &extents, &extents, 0, 0, quads, nQuad); |