From 103cc7ffda6f15fedacc4be4ae93283472c474c3 Mon Sep 17 00:00:00 2001 From: Dana Olson Date: Tue, 16 Sep 2014 02:49:31 -0400 Subject: cleanup --- platform/x11/os_x11.cpp | 5 +++-- platform/x11/os_x11.h | 10 ---------- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/platform/x11/os_x11.cpp b/platform/x11/os_x11.cpp index e5ca70fbed..4bb4816723 100644 --- a/platform/x11/os_x11.cpp +++ b/platform/x11/os_x11.cpp @@ -192,9 +192,10 @@ void OS_X11::initialize(const VideoMode& p_desired,int p_video_driver,int p_audi xsh = XAllocSizeHints(); xsh->flags = PMinSize | PMaxSize; XWindowAttributes xwa; - XGetWindowAttributes(x11_display,x11_window,&xwa); if (current_videomode.fullscreen) { - XGetWindowAttributes(x11_display,xwa.root,&xwa); + XGetWindowAttributes(x11_display,DefaultRootWindow(x11_display),&xwa); + } else { + XGetWindowAttributes(x11_display,x11_window,&xwa); } xsh->min_width = xwa.width; xsh->max_width = xwa.width; diff --git a/platform/x11/os_x11.h b/platform/x11/os_x11.h index e1cd5ddd9d..dd7278e76d 100644 --- a/platform/x11/os_x11.h +++ b/platform/x11/os_x11.h @@ -49,16 +49,6 @@ #include #include -// Hints for X11 fullscreen -typedef struct { - unsigned long flags; - unsigned long functions; - unsigned long decorations; - long inputMode; - unsigned long status; -} Hints; - -//bitch #undef CursorShape /** @author Juan Linietsky -- cgit v1.2.3