[gimp/soc-2010-cage-2] app: the ink sensitivity spin scales need two decimal digits precision
- From: Michael Muré <mmure src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/soc-2010-cage-2] app: the ink sensitivity spin scales need two decimal digits precision
- Date: Thu, 30 Dec 2010 18:11:05 +0000 (UTC)
commit 2e67971a3372b65e60b3156c3745fcb05fe9bd3d
Author: Michael Natterer <mitch gimp org>
Date: Fri Nov 19 15:19:24 2010 +0100
app: the ink sensitivity spin scales need two decimal digits precision
app/tools/gimpinkoptions-gui.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/app/tools/gimpinkoptions-gui.c b/app/tools/gimpinkoptions-gui.c
index 1123b92..071888a 100644
--- a/app/tools/gimpinkoptions-gui.c
+++ b/app/tools/gimpinkoptions-gui.c
@@ -85,21 +85,21 @@ gimp_ink_options_gui (GimpToolOptions *tool_options)
/* size sens slider */
scale = gimp_prop_spin_scale_new (config, "size-sensitivity",
_("Size"),
- 0.01, 0.1, 1);
+ 0.01, 0.1, 2);
gtk_box_pack_start (GTK_BOX (vbox2), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
/* tilt sens slider */
scale = gimp_prop_spin_scale_new (config, "tilt-sensitivity",
_("Tilt"),
- 0.01, 0.1, 1);
+ 0.01, 0.1, 2);
gtk_box_pack_start (GTK_BOX (vbox2), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
/* velocity sens slider */
scale = gimp_prop_spin_scale_new (config, "vel-sensitivity",
_("Speed"),
- 0.01, 0.1, 1);
+ 0.01, 0.1, 2);
gtk_box_pack_start (GTK_BOX (vbox2), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]