Allow marching ant speeds as slow as one step per 10 seconds since for

* app/config/gimpdisplayconfig.c: Allow marching ant speeds as
slow as one step per 10 seconds since for some remote sessions the
minimum of 1 step per second is too fast.

svn path=/trunk/; revision=27899
This commit is contained in:
Martin Nordholts 2009-01-10 13:57:54 +00:00
parent f171d10506
commit 0ce7c8aa81
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2009-01-10 Martin Nordholts <martinn@svn.gnome.org>
* app/config/gimpdisplayconfig.c: Allow marching ant speeds as
slow as one step per 10 seconds since for some remote sessions the
minimum of 1 step per second is too fast.
2009-01-10 Sven Neumann <sven@gimp.org>
Bug 471344 Circular brush strokes are not smooth and have corners

View File

@ -126,7 +126,7 @@ gimp_display_config_class_init (GimpDisplayConfigClass *klass)
GIMP_CONFIG_INSTALL_PROP_INT (object_class, PROP_MARCHING_ANTS_SPEED,
"marching-ants-speed",
MARCHING_ANTS_SPEED_BLURB,
10, 1000, DEFAULT_MARCHING_ANTS_SPEED,
10, 10000, DEFAULT_MARCHING_ANTS_SPEED,
GIMP_PARAM_STATIC_STRINGS);
GIMP_CONFIG_INSTALL_PROP_BOOLEAN (object_class, PROP_RESIZE_WINDOWS_ON_ZOOM,
"resize-windows-on-zoom",