summaryrefslogtreecommitdiff
path: root/command
diff options
context:
space:
mode:
authorRu Uba <[email protected]>2017-12-04 09:29:17 -0500
committerraveit65 <[email protected]>2017-12-19 08:04:51 +0100
commita964dca015cf42f032c3494011829481f173e9bf (patch)
tree4a0d3ab35c8925f63768fadc9de2729ff8380126 /command
parent9736a57f3a39d293daf30401a5ae8463a42b76e4 (diff)
downloadmate-applets-a964dca015cf42f032c3494011829481f173e9bf.tar.bz2
mate-applets-a964dca015cf42f032c3494011829481f173e9bf.tar.xz
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.
Diffstat (limited to 'command')
-rw-r--r--command/command.c2
1 files changed, 1 insertions, 1 deletions
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):"));