revealer: Handle child-visible properly

The target position is irrelevant for determining if the child should be
visible. When the current position is 0, it needs to be hidden, period.

Fixes #1355
This commit is contained in:
Benjamin Otte 2019-01-08 01:29:41 +01:00
parent 5e96129be1
commit b6d8d3975e

View File

@ -390,12 +390,7 @@ gtk_revealer_set_position (GtkRevealer *revealer,
priv->current_pos = pos;
/* We check target_pos here too, because we want to ensure we set
* child_visible immediately when starting a reveal operation
* otherwise the child widgets will not be properly realized
* after the reveal returns.
*/
new_visible = priv->current_pos != 0.0 || priv->target_pos != 0.0;
new_visible = priv->current_pos != 0.0;
child = gtk_bin_get_child (GTK_BIN (revealer));
if (child != NULL &&