diff options
author | raveit65 <[email protected]> | 2017-05-20 14:26:20 +0200 |
---|---|---|
committer | lukefromdc <[email protected]> | 2017-05-21 13:46:22 -0400 |
commit | 4de86661f4a6f67285333c67342c287f99deffeb (patch) | |
tree | adf0682694eba81ea6116ff349351969208a97d1 /applets/clock/clock-location-tile.c | |
parent | 69f396b25e993e04fe7efcdb8ff99c687d14d568 (diff) | |
download | mate-panel-4de86661f4a6f67285333c67342c287f99deffeb.tar.bz2 mate-panel-4de86661f4a6f67285333c67342c287f99deffeb.tar.xz |
clock: drop deprecated gtk_size_group_set_ignore_hidden
seems that function doesn't work proper, see
https://developer.gnome.org/gtk3/stable/GtkSizeGroup.html#gtk-size-group-set-ignore-hidden
Diffstat (limited to 'applets/clock/clock-location-tile.c')
-rw-r--r-- | applets/clock/clock-location-tile.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/applets/clock/clock-location-tile.c b/applets/clock/clock-location-tile.c index e263e88b..6e1d36b6 100644 --- a/applets/clock/clock-location-tile.c +++ b/applets/clock/clock-location-tile.c @@ -327,7 +327,6 @@ clock_location_tile_fill (ClockLocationTile *this) gtk_box_pack_start (GTK_BOX (box), priv->current_marker, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (box), priv->current_spacer, FALSE, FALSE, 0); priv->button_group = gtk_size_group_new (GTK_SIZE_GROUP_VERTICAL); - gtk_size_group_set_ignore_hidden (priv->button_group, FALSE); gtk_size_group_add_widget (priv->button_group, strut); /* @@ -340,7 +339,6 @@ clock_location_tile_fill (ClockLocationTile *this) * but they are never visible together). */ priv->current_group = gtk_size_group_new (GTK_SIZE_GROUP_BOTH); - gtk_size_group_set_ignore_hidden (priv->current_group, FALSE); gtk_size_group_add_widget (priv->current_group, priv->current_marker); gtk_size_group_add_widget (priv->current_group, priv->current_spacer); |