diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-09-03 00:09:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-03 00:09:19 +0200 |
commit | 2a8531cc56a7110f8248f18b8248fb1ed346c872 (patch) | |
tree | 294b5fc416158e335986369970bf4ae7aeb1ee8d /servers/display_server.cpp | |
parent | 7cc1e2062a996fea4005f84cef841092bb98916f (diff) | |
parent | bb306750ce8e0973229109be3536c6574cf960bd (diff) |
Merge pull request #41456 from nekomatata/x11-fix-popups
Popup fixes for X11 display server
Diffstat (limited to 'servers/display_server.cpp')
-rw-r--r-- | servers/display_server.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/servers/display_server.cpp b/servers/display_server.cpp index 32d4e9e569..8f6d6d3b99 100644 --- a/servers/display_server.cpp +++ b/servers/display_server.cpp @@ -186,6 +186,10 @@ DisplayServer::WindowID DisplayServer::create_sub_window(WindowMode p_mode, uint ERR_FAIL_V_MSG(INVALID_WINDOW_ID, "Sub-windows not supported by this display server."); } +void DisplayServer::show_window(WindowID p_id) { + ERR_FAIL_MSG("Sub-windows not supported by this display server."); +} + void DisplayServer::delete_sub_window(WindowID p_id) { ERR_FAIL_MSG("Sub-windows not supported by this display server."); } |