From 650845f254b05367cc9774144013d9edd07565ec Mon Sep 17 00:00:00 2001
From: Tomi Valkeinen <tomi.valkeinen@ti.com>
Date: Sat, 26 Nov 2016 20:58:16 +0200
Subject: kmscube: fix X11 fullscreen

---
 kmscube/cube-x11.cpp | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/kmscube/cube-x11.cpp b/kmscube/cube-x11.cpp
index dca59c8..c8f274e 100644
--- a/kmscube/cube-x11.cpp
+++ b/kmscube/cube-x11.cpp
@@ -41,7 +41,7 @@ static void main_loop(Display* dpy, xcb_connection_t *c, xcb_window_t window, ui
 				handled = true;
 
 				xcb_key_press_event_t *kp = (xcb_key_press_event_t *)event;
-				if (kp->detail == 24) {
+				if (kp->detail == 24 || kp->detail == 9) {
 					printf("Exit due to keypress\n");
 					need_exit = true;
 				}
@@ -128,18 +128,19 @@ void main_x11()
 			   xcb_window_attrib_mask,
 			   xcb_window_attrib_list);
 
-#if 0 // Doesn't work
-	if (s_fullscreen) {
+	if (s_fullscreen)
+	{
+		const char *net_wm_state = "_NET_WM_STATE";
+		const char *net_wm_state_fullscreen = "_NET_WM_STATE_FULLSCREEN";
 
-		xcb_intern_atom_cookie_t cookie = xcb_intern_atom(c, 0, 12, "_NET_WM_STATE");
+		xcb_intern_atom_cookie_t cookie = xcb_intern_atom(c, 0, strlen(net_wm_state), net_wm_state);
 		xcb_intern_atom_reply_t* reply = xcb_intern_atom_reply(c, cookie, 0);
 
-		xcb_intern_atom_cookie_t cookie2 = xcb_intern_atom(c, 0, 24, "_NET_WM_STATE_FULLSCREEN");
+		xcb_intern_atom_cookie_t cookie2 = xcb_intern_atom(c, 0, strlen(net_wm_state_fullscreen), net_wm_state_fullscreen);
 		xcb_intern_atom_reply_t* reply2 = xcb_intern_atom_reply(c, cookie2, 0);
 
 		xcb_change_property(c, XCB_PROP_MODE_REPLACE, window, reply->atom, XCB_ATOM_ATOM , 32, 1, (void*)&reply2->atom);
 	}
-#endif
 
 	xcb_map_window (c, window);
 	xcb_flush (c);
-- 
cgit v1.2.3