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

Assistant: Prevent window from being minimized

This commit is contained in:
ForLoveOfCats 2021-06-28 21:03:37 -04:00 committed by Gunnar Beutner
parent cefa2e3dd2
commit d73f53d1de

View file

@ -197,6 +197,7 @@ int main(int argc, char** argv)
auto app = GUI::Application::construct(argc, argv);
auto window = GUI::Window::construct();
window->set_minimizable(false);
Assistant::AppState app_state;
Assistant::Database db { app_state };