summaryrefslogtreecommitdiff
path: root/platform/web
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-09-12 16:29:40 +0200
committerRémi Verschelde <rverschelde@gmail.com>2022-09-12 16:29:45 +0200
commit1513d76cb9408b5d36d84a930736cf7911ee5a01 (patch)
treeddc6aa313b5eba27fec4a98de01ff711389c719a /platform/web
parentdbab737798e2f3d35370c3504ab3c57e6cc0d020 (diff)
Fix some errors affecting the Web editor
- Don't warn about minimized/maximized modes not being available. - Blender and FBX export both depend on running thirdparty applications, which can't be done (easily at least) for Web and Android editors. - Editor theme complained about not being able to retrieve texture data for an icon. It was only used once so instead of flipping at runtime, let's just add a flipped icon. Part of #65702.
Diffstat (limited to 'platform/web')
-rw-r--r--platform/web/display_server_web.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/web/display_server_web.cpp b/platform/web/display_server_web.cpp
index 38ac6b23f4..f6a61b18e4 100644
--- a/platform/web/display_server_web.cpp
+++ b/platform/web/display_server_web.cpp
@@ -997,7 +997,7 @@ void DisplayServerWeb::window_set_mode(WindowMode p_mode, WindowID p_window) {
} break;
case WINDOW_MODE_MAXIMIZED:
case WINDOW_MODE_MINIMIZED:
- WARN_PRINT("WindowMode MAXIMIZED and MINIMIZED are not supported in Web platform.");
+ // WindowMode MAXIMIZED and MINIMIZED are not supported in Web platform.
break;
default:
break;