diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2025-04-30 22:31:39 -0700 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2025-04-30 22:31:39 -0700 |
commit | c6212f696a1673208091d9f00a96b9a0cd5a63fa (patch) | |
tree | cd04a69e4b69a2401b325bc66f1590adfb43fea8 /remote_plot.c | |
parent | 21de24540f409e98fb08572f83b953cfec1967b7 (diff) |
Set default fullscreen to show better on pi
Diffstat (limited to 'remote_plot.c')
-rw-r--r-- | remote_plot.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/remote_plot.c b/remote_plot.c index c6c847f..4c88fcf 100644 --- a/remote_plot.c +++ b/remote_plot.c @@ -671,7 +671,8 @@ static void activate (GtkApplication *app, gpointer user_data) window = gtk_application_window_new (app); gtk_window_set_title (GTK_WINDOW (window), "remote_plot"); - gtk_window_set_default_size (GTK_WINDOW (window), 1000, 1000); + //gtk_window_set_default_size (GTK_WINDOW (window), 1000, 1000); + gtk_window_fullscreen (GTK_WINDOW(window)); //gtk_drawing_area_set_content_width (GTK_DRAWING_AREA (data->area), 600); //gtk_drawing_area_set_content_height (GTK_DRAWING_AREA (data->area), 600); |