Show the description of params in dialog boxes, rather than the internal

* plug-ins/pygimp/gimpfu.py: Show the description of params in dialog
	boxes, rather than the internal variable name.  This is more
	consistent with script-fu.  (reported by Florian Traverse)
This commit is contained in:
David Odin 2004-01-17 14:05:40 +00:00
parent 4fe32952ea
commit 31c507c288
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2004-01-17 DindinX <david@dindinx.org>
* plug-ins/pygimp/gimpfu.py: Show the description of params in dialog
boxes, rather than the internal variable name. This is more
consistent with script-fu. (reported by Florian Traverse)
2004-01-16 Manish Singh <yosh@gimp.org>
* plug-ins/common/plugindetails.c: some cleanup, restore old internal

View File

@ -379,7 +379,7 @@ def _interact(func_name):
desc = params[i][2]
def_val = defaults[i]
label = gtk.Label(name)
label = gtk.Label(desc)
label.set_alignment(1.0, 0.5)
table.attach(label, 1,2, i,i+1, xoptions=gtk.FILL)
label.show()