aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/runxdg.cpp4
1 files changed, 2 insertions, 2 deletions
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);
}
}