about summary refs log tree commit diff stats
path: root/src/windows.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows.c')
-rw-r--r--src/windows.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/windows.c b/src/windows.c
index 4f59d0c3..64a18bd6 100644
--- a/src/windows.c
+++ b/src/windows.c
@@ -1076,6 +1076,15 @@ cons_prefs(void)
         cons_show("Reconnect interval           : %d seconds", reconnect_interval);
     }
 
+    gint autoping_interval = prefs_get_autoping();
+    if (autoping_interval == 0) {
+        cons_show("Autoping interval            : OFF");
+    } else if (remind_period == 1) {
+        cons_show("Autoping interval            : 1 second");
+    } else {
+        cons_show("Autoping interval            : %d seconds", autoping_interval);
+    }
+
     cons_show("");
 
     if (current_index == 0) {