reverted this change, we don't add new features in a stable release

2008-07-02  Sven Neumann  <sven@gimp.org>

	* plug-ins/pygimp/gimpui.py: reverted this change, we don't add
	new features in a stable release series.

svn path=/branches/gimp-2-4/; revision=26038
This commit is contained in:
Sven Neumann 2008-07-02 15:07:16 +00:00 committed by Sven Neumann
parent c345a7e00c
commit f7324bff84
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-07-02 Sven Neumann <sven@gimp.org>
* plug-ins/pygimp/gimpui.py: reverted this change, we don't add
new features in a stable release series.
2008-06-16 Akkana Peck <akkana@svn.gnome.org>
Merged from trunk:

View File

@ -172,8 +172,6 @@ class ColorSelector(ColorButton):
color = default
elif isinstance(default, tuple):
color = apply(gimpcolor.RGB, default)
elif isinstance(default, str):
color = gimpcolor.rgb_parse_css(default)
ColorButton.__init__(self, _("Python-Fu Color Selection"), 100, 20,
color, COLOR_AREA_FLAT)
def get_value(self):