From 40fa9400304e89516cc88bdc10ecb36733adb211 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Fri, 29 Mar 2013 12:13:43 +0100 Subject: [PATCH] Fix order of text-import subdialogs. Commit 29c1450251805417aacb9cecc84b03c81137c137 inadvertently reversed the order of display of the the first-line and seperator subdialogs. Amoung other problems, this meant that controls of the former were no longer respected. This change restores the original order. --- src/ui/gui/text-data-import-dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/gui/text-data-import-dialog.c b/src/ui/gui/text-data-import-dialog.c index d535734d08..20bac652cc 100644 --- a/src/ui/gui/text-data-import-dialog.c +++ b/src/ui/gui/text-data-import-dialog.c @@ -87,8 +87,8 @@ text_data_import_assistant (PsppireDataWindow *dw) { ia->intro = intro_page_create (ia); - ia->separators = separators_page_create (ia); ia->first_line = first_line_page_create (ia); + ia->separators = separators_page_create (ia); } ia->formats = formats_page_create (ia); -- 2.30.2