Skip to content

Commit

Permalink
Use gtk_widget_hide instead of gtk_widget_hide_all
Browse files Browse the repository at this point in the history
  • Loading branch information
nickg committed May 20, 2011
1 parent 946baa3 commit 50cf4d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/floating_shape.c
Expand Up @@ -134,7 +134,7 @@ void show_shape(float_shape_t *shape)

void hide_shape(float_shape_t *shape)
{
gtk_widget_hide_all(shape->window);
gtk_widget_hide(shape->window);
}

void move_shape(float_shape_t *shape, int x, int y)
Expand Down

0 comments on commit 50cf4d5

Please sign in to comment.