Emit GtkAssistant::apply before computing the next step

This fixes bug 589745.
This commit is contained in:
Matthias Clasen 2009-08-06 23:52:18 -04:00
parent d769808cbb
commit ae37d2097e

View File

@ -645,10 +645,10 @@ on_assistant_apply (GtkWidget *widget,
{
gboolean success;
success = compute_next_step (assistant);
g_signal_emit (assistant, signals [APPLY], 0);
success = compute_next_step (assistant);
/* if the assistant hasn't switched to another page, just emit
* the CLOSE signal, it't the last page in the assistant flow
*/