From: Tadao Tanikawa Date: Sat, 10 Nov 2018 18:02:30 +0000 (+0000) Subject: Example fullscreen X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=staging%2Fxdg-launcher.git;a=commitdiff_plain;h=refs%2Fheads%2Fsandbox%2Fruke47%2Ffullscreen Example fullscreen Change-Id: I1bddd5ae7fc88be9b33b642f18055c6fed48d543 Signed-off-by: Tadao Tanikawa --- diff --git a/src/runxdg.cpp b/src/runxdg.cpp index 1ce3881..3950d4b 100644 --- a/src/runxdg.cpp +++ b/src/runxdg.cpp @@ -351,7 +351,7 @@ int RunXDG::init_hs (void) json_object_object_add(obj, this->m_wm->kKeyDrawingName, json_object_new_string(this->m_role.c_str())); json_object_object_add(obj, this->m_wm->kKeyDrawingArea, - json_object_new_string("normal.full")); + json_object_new_string("fullscreen"/*"normal.full"*/)); this->m_wm->activateSurface(obj); } @@ -503,7 +503,7 @@ void RunXDG::setup_surface (void) json_object_object_add(obj, m_wm->kKeyDrawingName, json_object_new_string(m_role.c_str())); json_object_object_add(obj, m_wm->kKeyDrawingArea, - json_object_new_string("normal.full")); + json_object_new_string("fullscreen"/*"normal.full"*/)); m_wm->activateSurface(obj); } }