diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2025-04-26 17:56:54 -0700 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2025-04-26 17:56:54 -0700 |
commit | 02ced6640015d1373420d8a5a6b242471a999576 (patch) | |
tree | 86b6e419a0903258b426b4a6feaa5ccbc877c156 | |
parent | d9af481896f9f57743aa3422a7cd515188a6291a (diff) |
Move expanders on top of drawing area to give it more spaces in the future
-rw-r--r-- | remote_plot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote_plot.c b/remote_plot.c index 42b560b..c173f3b 100644 --- a/remote_plot.c +++ b/remote_plot.c @@ -537,9 +537,9 @@ static void activate (GtkApplication *app, gpointer user_data) gtk_box_append(GTK_BOX(box), button); gtk_box_append(GTK_BOX(box), data->volt_label); gtk_box_append(GTK_BOX(box), data->temp_label); - gtk_box_append(GTK_BOX(box), data->area); gtk_box_append(GTK_BOX(box), expander_volt); gtk_box_append(GTK_BOX(box), expander_temp); + gtk_box_append(GTK_BOX(box), data->area); gtk_window_set_child (GTK_WINDOW (window), scrolled_window); gtk_window_present (GTK_WINDOW (window)); |