From 80abf46094c739b957cf1246f03abdee5dc0fbdf Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Wed, 16 Apr 2008 00:45:23 +0000 Subject: [PATCH] fix button sequence, show filter... button left to Cancel button svn path=/trunk/; revision=25064 --- gtk/dlg_utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/dlg_utils.c b/gtk/dlg_utils.c index 930a2efb0f..81d849b71c 100644 --- a/gtk/dlg_utils.c +++ b/gtk/dlg_utils.c @@ -359,10 +359,10 @@ dlg_button_row_new(const gchar *stock_id_first, ...) if (cap_start != NULL) dlg_button_new(hbox, button_hbox, cap_start); if (cap_stop != NULL) dlg_button_new(hbox, button_hbox, cap_stop); if (stop != NULL) dlg_button_new(hbox, button_hbox, stop); - if (close != NULL) dlg_button_new(hbox, button_hbox, close); if (clear != NULL) dlg_button_new(hbox, button_hbox, clear); - if (cancel != NULL) dlg_button_new(hbox, button_hbox, cancel); if (filter_stream!= NULL) dlg_button_new(hbox, button_hbox, filter_stream); + if (close != NULL) dlg_button_new(hbox, button_hbox, close); + if (cancel != NULL) dlg_button_new(hbox, button_hbox, cancel); /* GTK2: we don't know that button combination, add it to the above list! */ /* g_assert_not_reached(); */