Skip to content

Commit

Permalink
build: Fix linux window size
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Aug 8, 2023
1 parent d78227c commit 05790fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linux/my_application.cc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static void my_application_activate(GApplication* application) {
gtk_window_set_title(window, "fluffychat");
}

gtk_window_set_default_size(window, 1280, 720);
gtk_window_set_default_size(window, 864, 600);

g_autoptr(FlDartProject) project = fl_dart_project_new();
fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments);
Expand Down

0 comments on commit 05790fd

Please sign in to comment.