diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2025-05-07 00:50:01 -0700 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2025-05-07 00:50:01 -0700 |
commit | 8643c8ffc59dd8a9995ccf9b0461f3f1e118bcb6 (patch) | |
tree | e1b4fb89ac521cc4926f57cd4d02a10d4ff5289d /remote_plot.c | |
parent | 4b15baeeacb69db062bd42a5aa97ed5159067b78 (diff) |
default set first temp plot active
Diffstat (limited to 'remote_plot.c')
-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 f18862b..2ece6f2 100644 --- a/remote_plot.c +++ b/remote_plot.c @@ -719,7 +719,7 @@ static void activate (GtkApplication *app, gpointer user_data) for(int i=0;i<(VOLTLEN+TEMPLEN);i++) data->checkbutton[i]=gtk_check_button_new_with_label(checkbutton_names[i]); gtk_check_button_set_active(GTK_CHECK_BUTTON(data->checkbutton[0]),TRUE); - //gtk_check_button_set_active(GTK_CHECK_BUTTON(data->checkbutton[VOLTLEN]),TRUE); + gtk_check_button_set_active(GTK_CHECK_BUTTON(data->checkbutton[VOLTLEN]),TRUE); window = gtk_application_window_new (app); gtk_window_set_title (GTK_WINDOW (window), "remote_plot"); |