diff options
author | Anthony Wang | 2021-04-15 09:02:16 -0500 |
---|---|---|
committer | Anthony Wang | 2021-04-15 09:02:16 -0500 |
commit | 789a7570d556f63f1784121facde04432333f6a7 (patch) | |
tree | b04cb63a6da63cd49b0dae456762a01b6cc5ef4e | |
parent | 079ec5e7a7eeb620267ce898d164371e5a7b0208 (diff) |
Change default poll rate to 1000
-rw-r--r-- | src/gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -351,7 +351,7 @@ int start_gui (SensorSource *ss) { init_sensors(); resize_to_treeview(GTK_WINDOW(window), GTK_TREE_VIEW(treeview)); - timeout = g_timeout_add(300, update_data, NULL); + timeout = g_timeout_add(1000, update_data, NULL); } else{ dialog = gtk_message_dialog_new(GTK_WINDOW (window), |