aboutsummaryrefslogtreecommitdiff
path: root/remote_plot.c
diff options
context:
space:
mode:
authorXiao Pan <xyz@flylightning.xyz>2025-05-07 00:50:01 -0700
committerXiao Pan <xyz@flylightning.xyz>2025-05-07 00:50:01 -0700
commit8643c8ffc59dd8a9995ccf9b0461f3f1e118bcb6 (patch)
treee1b4fb89ac521cc4926f57cd4d02a10d4ff5289d /remote_plot.c
parent4b15baeeacb69db062bd42a5aa97ed5159067b78 (diff)
default set first temp plot active
Diffstat (limited to 'remote_plot.c')
-rw-r--r--remote_plot.c2
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");