Index: uspace/lib/display/include/types/display/wndparams.h
===================================================================
--- uspace/lib/display/include/types/display/wndparams.h	(revision 6cef8d6a633ccd8d6545bfa8b87ae7113b8d30ed)
+++ uspace/lib/display/include/types/display/wndparams.h	(revision 9a07ee3efa9f0bc51fee1cb5d2a8dd94cb95c6a0)
@@ -1,4 +1,4 @@
 /*
- * Copyright (c) 2023 Jiri Svoboda
+ * Copyright (c) 2024 Jiri Svoboda
  * All rights reserved.
  *
@@ -42,16 +42,18 @@
 	/** Popup window (capture events, no focus) */
 	wndf_popup = 0x1,
+	/** Window does not receive focus */
+	wndf_nofocus = 0x2,
 	/** Topmost window */
-	wndf_topmost = 0x2,
+	wndf_topmost = 0x4,
 	/** Set specific initial window position */
-	wndf_setpos = 0x4,
+	wndf_setpos = 0x8,
 	/** Window is minimized */
-	wndf_minimized = 0x8,
+	wndf_minimized = 0x10,
 	/** Window is maximized */
-	wndf_maximized = 0x10,
+	wndf_maximized = 0x20,
 	/** Special system window */
-	wndf_system = 0x20,
+	wndf_system = 0x40,
 	/** Maximized windows should avoid this window */
-	wndf_avoid = 0x40
+	wndf_avoid = 0x80
 } display_wnd_flags_t;
 
