summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2011-02-22 20:19:13 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2011-02-22 20:19:13 +0100
commitec1a06ab4ffb869d0b19d57faf91dbfe42f834ca (patch)
tree16443eed1c18de0e7678537e184c0ab09acfd7f5 /src
parent8445adb47ece5ecf03d95d3d4d1af7b3415b25af (diff)
downloadabrt-ec1a06ab4ffb869d0b19d57faf91dbfe42f834ca.tar.gz
abrt-ec1a06ab4ffb869d0b19d57faf91dbfe42f834ca.tar.xz
abrt-ec1a06ab4ffb869d0b19d57faf91dbfe42f834ca.zip
changed page type so it's not skipped when back button is pressed
Diffstat (limited to 'src')
-rw-r--r--src/gui-wizard-gtk/wizard.c5
1 files changed, 4 insertions, 1 deletions
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
*/