From ec1a06ab4ffb869d0b19d57faf91dbfe42f834ca Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 22 Feb 2011 20:19:13 +0100 Subject: changed page type so it's not skipped when back button is pressed --- src/gui-wizard-gtk/wizard.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/gui-wizard-gtk/wizard.c b/src/gui-wizard-gtk/wizard.c index 66711af6..427c5026 100644 --- a/src/gui-wizard-gtk/wizard.c +++ b/src/gui-wizard-gtk/wizard.c @@ -66,7 +66,10 @@ static page_obj_t pages[] = { PAGE_SUMMARY , "Problem description" , GTK_ASSISTANT_PAGE_CONTENT }, /* need this type to get "apply" signal */ { PAGE_ANALYZE_SELECTOR , "Select analyzer" , GTK_ASSISTANT_PAGE_CONFIRM }, - { PAGE_ANALYZE_PROGRESS , "Analyzing" , GTK_ASSISTANT_PAGE_PROGRESS }, + /* Was GTK_ASSISTANT_PAGE_PROGRESS + * if we leave it as _PROGRESS the back button skips the page + */ + { PAGE_ANALYZE_PROGRESS , "Analyzing" , GTK_ASSISTANT_PAGE_CONTENT }, /* Some reporters don't need backtrace, we can skip bt page for them. * Therefore we want to know reporters _before_ we go to bt page */ -- cgit