From ef60aa9e573bea328d0cad4b3619912b021d0d9b Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 25 Jan 2010 11:57:38 +0000 Subject: account_assistant_page_forward_func: never go forward after the salut page This fix a bug if user chooses to not create a salut account. --- src/empathy-account-assistant.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/empathy-account-assistant.c b/src/empathy-account-assistant.c index 5d4722dbf..242a8d7ba 100644 --- a/src/empathy-account-assistant.c +++ b/src/empathy-account-assistant.c @@ -534,6 +534,11 @@ account_assistant_page_forward_func (gint current_page, /* Don't go forward */ retval = -1; } + else if (current_page == PAGE_SALUT) + { + /* Don't go forward */ + retval = -1; + } else if (current_page >= PAGE_ENTER_CREATE) { if (priv->create_enter_resp == RESPONSE_CREATE_AGAIN) -- cgit v1.2.3