1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:17:44 +00:00

Serendipity: Make main window a normal window

..instead of a tool window. Tool windows are meant as accessories to
an application's main/primary windows, not to be primary windows
themselves.

Fixes #5667.
This commit is contained in:
Andreas Kling 2021-03-07 14:18:52 +01:00
parent 1375c57c4a
commit 2d7d5f2b55

View file

@ -68,7 +68,6 @@ int main(int argc, char** argv)
window->set_title("Welcome");
window->set_resizable(true);
window->set_window_type(GUI::WindowType::ToolWindow);
window->set_main_widget<SerendipityWidget>();
window->show();