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
Notes: sideshowbarker 2024-07-18 21:38:58 +09:00

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();