From: Alberto Garcia Date: Wed, 4 Feb 2009 16:01:45 +0000 (+0000) Subject: 2009-02-04 Alberto Garcia X-Git-Tag: 2.1.66-1~177 X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=095e1a32375b31969818f5106290ff6579806d01;p=hildon 2009-02-04 Alberto Garcia * src/hildon-stackable-window.c (hildon_stackable_window_hide): Remove from stack before calling parent's hide. --- diff --git a/ChangeLog b/ChangeLog index a6c1957..6dd6a55 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2009-02-04 Alberto Garcia + * src/hildon-stackable-window.c (hildon_stackable_window_hide): + Remove from stack before calling parent's hide. + +2009-02-04 Alberto Garcia + * src/hildon-window-stack.c (hildon_window_stack_remove): When a window is removed from the middle of the stack, update the transiency of the previous one. diff --git a/src/hildon-stackable-window.c b/src/hildon-stackable-window.c index a040465..2a694f8 100644 --- a/src/hildon-stackable-window.c +++ b/src/hildon-stackable-window.c @@ -263,11 +263,12 @@ static void hildon_stackable_window_hide (GtkWidget *widget) { HildonStackableWindowPrivate *priv = HILDON_STACKABLE_WINDOW_GET_PRIVATE (widget); - GTK_WIDGET_CLASS (hildon_stackable_window_parent_class)->hide (widget); if (priv->stack) { hildon_window_stack_remove (HILDON_STACKABLE_WINDOW (widget)); } + + GTK_WIDGET_CLASS (hildon_stackable_window_parent_class)->hide (widget); } static void