[gimp] Bug 683553 - Spinscale scrollvalues in Brushsize are much too small
- From: N/A <ell src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Bug 683553 - Spinscale scrollvalues in Brushsize are much too small
- Date: Tue, 17 Oct 2017 12:48:17 +0000 (UTC)
commit 5456ddbb4064ef48705b20820a32fde3cdce549a
Author: Ell <ell_se yahoo com>
Date: Tue Oct 17 08:39:07 2017 -0400
Bug 683553 - Spinscale scrollvalues in Brushsize are much too small
Increase the step and page increments of the brush radius spinscale
in the brush editor to 1.0 and 10.0, respectively, to match those of
the corresponding spinscale in the paint tool options.
app/widgets/gimpbrusheditor.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/app/widgets/gimpbrusheditor.c b/app/widgets/gimpbrusheditor.c
index 7f89329..d9557f9 100644
--- a/app/widgets/gimpbrusheditor.c
+++ b/app/widgets/gimpbrusheditor.c
@@ -152,7 +152,7 @@ gimp_brush_editor_init (GimpBrushEditor *editor)
/* brush radius scale */
editor->radius_data =
- GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.1, 1000.0, 0.1, 1.0, 0.0));
+ GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.1, 1000.0, 1.0, 10.0, 0.0));
scale = gimp_spin_scale_new (editor->radius_data, _("Radius"), 1);
gtk_box_pack_start (GTK_BOX (editor->options_box), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]