mirror of https://github.com/GNOME/gimp.git
(_interact): swap order of buttons to match other dialogs.
This commit is contained in:
parent
cc3bdec2c9
commit
ed2dac22b5
|
@ -2,6 +2,7 @@
|
|||
|
||||
* gimpfu.py (RadioEntry): add PF_RADIO support to gimpfu based on
|
||||
Yosh's patch.
|
||||
(_interact): swap order of buttons to match other dialogs.
|
||||
|
||||
2002-08-30 James Henstridge <james@daa.com.au>
|
||||
|
||||
|
|
|
@ -330,8 +330,8 @@ def _interact(func_name):
|
|||
tooltips = gtk.Tooltips()
|
||||
|
||||
dialog = gtk.Dialog(func_name, None, 0,
|
||||
(gtk.STOCK_OK, gtk.RESPONSE_OK,
|
||||
gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL))
|
||||
(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
|
||||
gtk.STOCK_OK, gtk.RESPONSE_OK))
|
||||
table = gtk.Table(len(params), 3, gtk.FALSE)
|
||||
table.set_border_width(5)
|
||||
table.set_row_spacings(2)
|
||||
|
|
Loading…
Reference in New Issue