From a964dca015cf42f032c3494011829481f173e9bf Mon Sep 17 00:00:00 2001 From: Ru Uba Date: Mon, 4 Dec 2017 09:29:17 -0500 Subject: command: bump range of interval Increase time range end point to allow command to occur inside a range for up to 86400 seconds (24 hours) in a second. --- command/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/command.c b/command/command.c index 354108ba..0c42f0bd 100644 --- a/command/command.c +++ b/command/command.c @@ -164,7 +164,7 @@ command_settings_callback (GtkAction *action, CommandApplet *command_applet) #endif gtk_grid_attach (grid, widget, 1, 1, 1, 1); - interval = gtk_spin_button_new_with_range (1.0, 600.0, 1.0); + interval = gtk_spin_button_new_with_range (1.0, 86400.0, 1.0); gtk_grid_attach (grid, interval, 2, 1, 1, 1); widget = gtk_label_new (_("Maximum width (chars):")); -- cgit v1.2.1