Skip to content

Commit

Permalink
fix: Reduce default window width
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuntu committed Oct 4, 2024
1 parent ab20227 commit 184a0ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/game_center/linux/my_application.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static void my_application_activate(GApplication* application) {
GtkWindow* window = GTK_WINDOW(hdy_application_window_new());
gtk_window_set_application(window, GTK_APPLICATION(application));

gtk_window_set_default_size(window, 1280, 720);
gtk_window_set_default_size(window, 960, 720);
gtk_widget_show(GTK_WIDGET(window));

g_autoptr(FlDartProject) project = fl_dart_project_new();
Expand Down

0 comments on commit 184a0ae

Please sign in to comment.