Skip to content

Commit 8da15e2

Browse files
authored
Photo search: Set window title on Windows (flutter#987)
Updates the window title to "Desktop Photo Search" in the Windows build of desktop_photo_search.
1 parent e0fe283 commit 8da15e2

File tree

1 file changed

+1
-1
lines changed
  • experimental/desktop_photo_search/windows/runner

1 file changed

+1
-1
lines changed

experimental/desktop_photo_search/windows/runner/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
2727
FlutterWindow window(project);
2828
Win32Window::Point origin(10, 10);
2929
Win32Window::Size size(1280, 720);
30-
if (!window.CreateAndShow(L"desktop_photo_search", origin, size)) {
30+
if (!window.CreateAndShow(L"Desktop Photo Search", origin, size)) {
3131
return EXIT_FAILURE;
3232
}
3333
window.SetQuitOnClose(true);

0 commit comments

Comments
 (0)