mirror of https://github.com/GNOME/gimp.git
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:
parent
4fe32952ea
commit
31c507c288
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue