(_interact): swap order of buttons to match other dialogs.

This commit is contained in:
James Henstridge 2002-08-31 01:47:22 +00:00
parent cc3bdec2c9
commit ed2dac22b5
2 changed files with 3 additions and 2 deletions

View File

@ -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>

View File

@ -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)