chore: Reset the default window size on linux

This commit is contained in:
Christian Pauly 2022-08-10 09:52:10 +02:00
parent 90e2052946
commit 77cf773d71
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ static void my_application_activate(GApplication* application) {
gtk_window_set_title(window, "FluffyChat");
}
gtk_window_set_default_size(window, 1200, 720);
gtk_window_set_default_size(window, 800, 600);
g_autoptr(FlDartProject) project = fl_dart_project_new();
fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments);