From 34f40af3a4d1bd5f3e8fda95221d8ae7abe1e135 Mon Sep 17 00:00:00 2001 From: eggfly Date: Thu, 21 Jul 2022 12:53:18 +0800 Subject: [PATCH] Set x11 window title to empty --- .../shell/platform/linux_embedded/window/native_window_x11.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flutter/shell/platform/linux_embedded/window/native_window_x11.cc b/src/flutter/shell/platform/linux_embedded/window/native_window_x11.cc index 05374de3..6445b715 100644 --- a/src/flutter/shell/platform/linux_embedded/window/native_window_x11.cc +++ b/src/flutter/shell/platform/linux_embedded/window/native_window_x11.cc @@ -16,7 +16,7 @@ namespace flutter { namespace { static constexpr char kWmDeleteWindow[] = "WM_DELETE_WINDOW"; -static constexpr char kWindowTitle[] = "Flutter for Embedded Linux"; +static constexpr char kWindowTitle[] = ""; } // namespace NativeWindowX11::NativeWindowX11(Display* display,