[Xfce4-commits] [apps/xfce4-screenshooter] 02/05: allow delay of 0 (who's got a spare second these days?)
noreply at xfce.org
noreply at xfce.org
Mon Nov 30 22:04:33 CET 2015
This is an automated email from the git hooks/post-receive script.
landry pushed a commit to branch master
in repository apps/xfce4-screenshooter.
commit 38f1d093099d700c02901922b40d878e8e3148b7
Author: Matias Wilkman <matias.wilkman at gmail.com>
Date: Sat Nov 28 22:06:39 2015 +0200
allow delay of 0 (who's got a spare second these days?)
---
lib/screenshooter-dialogs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/screenshooter-dialogs.c b/lib/screenshooter-dialogs.c
index f3c2535..e6ebce9 100644
--- a/lib/screenshooter-dialogs.c
+++ b/lib/screenshooter-dialogs.c
@@ -855,7 +855,7 @@ GtkWidget *screenshooter_region_dialog_new (ScreenshotData *sd, gboolean plugin)
delay_spinner_box = gtk_hbox_new (FALSE, 4);
gtk_box_pack_start (GTK_BOX (delay_box), delay_spinner_box, FALSE, FALSE, 0);
- delay_spinner = gtk_spin_button_new_with_range(1.0, 60.0, 1.0);
+ delay_spinner = gtk_spin_button_new_with_range(0.0, 60.0, 1.0);
gtk_spin_button_set_value (GTK_SPIN_BUTTON (delay_spinner), sd->delay);
gtk_widget_set_tooltip_text (delay_spinner,
_("Delay in seconds before the screenshot is taken"));
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list