add a "fullscreen" semantic type; if a window requests the screen size

2001-08-19  Havoc Pennington  <hp@pobox.com>

	* src/window.c: add a "fullscreen" semantic type; if a window
	requests the screen size exactly, and is undecorated, and is not a
	desktop window, we consider it a fullscreen window and keep it on
	top.

	Totally untested.
This commit is contained in:
Havoc Pennington
2001-08-20 03:17:40 +00:00
committed by Havoc Pennington
parent 04e09d4c56
commit f562e65d5f
5 changed files with 48 additions and 14 deletions

View File

@@ -262,6 +262,10 @@ compute_layer (MetaWindow *window)
window->layer = META_LAYER_DOCK;
break;
case META_WINDOW_FULLSCREEN:
window->layer = META_LAYER_FULLSCREEN;
break;
default:
window->layer = META_LAYER_NORMAL;
break;