From 047e0b7de5ca981d955739074919646fade828fb Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Fri, 20 Mar 2020 17:51:53 -0300 Subject: Reworked tooltips to use the popup system. --- servers/display_server.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'servers/display_server.h') diff --git a/servers/display_server.h b/servers/display_server.h index d351f0e322..fd70c8919f 100644 --- a/servers/display_server.h +++ b/servers/display_server.h @@ -173,11 +173,13 @@ public: WINDOW_FLAG_BORDERLESS, WINDOW_FLAG_ALWAYS_ON_TOP, WINDOW_FLAG_TRANSPARENT, + WINDOW_FLAG_NO_FOCUS, WINDOW_FLAG_MAX, WINDOW_FLAG_RESIZE_DISABLED_BIT = (1 << WINDOW_FLAG_RESIZE_DISABLED), WINDOW_FLAG_BORDERLESS_BIT = (1 << WINDOW_FLAG_BORDERLESS), WINDOW_FLAG_ALWAYS_ON_TOP_BIT = (1 << WINDOW_FLAG_ALWAYS_ON_TOP), - WINDOW_FLAG_TRANSPARENT_BIT = (1 << WINDOW_FLAG_TRANSPARENT) + WINDOW_FLAG_TRANSPARENT_BIT = (1 << WINDOW_FLAG_TRANSPARENT), + WINDOW_FLAG_NO_FOCUS_BIT = (1 << WINDOW_FLAG_NO_FOCUS) }; virtual WindowID create_sub_window(WindowMode p_mode, uint32_t p_flags, const Rect2i & = Rect2i()); -- cgit v1.2.3