chore: Reset the default window size on linux

This commit is contained in:
Christian Pauly 2022-08-10 09:52:10 +02:00
parent 3437b01ca2
commit 05d7c5019b

View file

@ -53,7 +53,7 @@ static void my_application_activate(GApplication* application) {
gtk_window_set_title(window, "FluffyChat"); 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(); g_autoptr(FlDartProject) project = fl_dart_project_new();
fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments); fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments);