[gegl] operations: clean up properties of motion-blur-*
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] operations: clean up properties of motion-blur-*
- Date: Sun, 18 May 2014 21:37:04 +0000 (UTC)
commit 32ff3d5192ed3aaf3fa1131cee1072e59e259125
Author: Michael Natterer <mitch gimp org>
Date: Sun May 18 23:35:03 2014 +0200
operations: clean up properties of motion-blur-*
operations/common/motion-blur-circular.c | 4 ++--
operations/common/motion-blur-zoom.c | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/operations/common/motion-blur-circular.c b/operations/common/motion-blur-circular.c
index 71dab69..e9a171b 100644
--- a/operations/common/motion-blur-circular.c
+++ b/operations/common/motion-blur-circular.c
@@ -41,15 +41,15 @@
gegl_property_double (center_x, _("Center X"),
"default", 20.0,
"ui-min", -100000.0, "ui-max", 100000.0,
- "axis", "x",
"unit", "pixel-coordinate",
+ "axis", "x",
NULL)
gegl_property_double (center_y, _("Center Y"),
"default", 20.0,
"ui-min", -100000.0, "ui-max", 100000.0,
- "axis", "y",
"unit", "pixel-coordinate",
+ "axis", "y",
NULL)
/* FIXME: With a large angle, we lose AreaFilter's flavours */
diff --git a/operations/common/motion-blur-zoom.c b/operations/common/motion-blur-zoom.c
index 3a33fca..ca13f10 100644
--- a/operations/common/motion-blur-zoom.c
+++ b/operations/common/motion-blur-zoom.c
@@ -37,7 +37,7 @@
#ifdef GEGL_PROPERTIES
-gegl_property_double (center_x, _("X center"),
+gegl_property_double (center_x, _("Center X"),
"description", _("Horizontal center position"),
"default", 20.0,
"ui-min", -100000.0, "ui-max", 100000.0,
@@ -45,12 +45,12 @@ gegl_property_double (center_x, _("X center"),
"axis", "x",
NULL)
-gegl_property_double (center_y, _("Y center"),
+gegl_property_double (center_y, _("Center Y"),
"description", _("Vertical center position"),
"default", 20.0,
"ui-min", -100000.0, "ui-max", 100000.0,
"unit", "pixel-coordinate",
- "axis", "x",
+ "axis", "y",
NULL)
gegl_property_double (factor, _("Factor"),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]