1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-04 09:17:29 +01:00

Hide the dateBar but don't set it as gone, this prevents charts from changing size when swiping.

This commit is contained in:
Daniele Gobbetti 2017-04-08 15:16:35 +02:00
parent de6ce1a3d7
commit 5a019c238a

View File

@ -234,7 +234,7 @@ public abstract class AbstractChartFragment extends AbstractGBFragment {
}
protected void showDateBar(boolean show) {
getChartsHost().getDateBar().setVisibility(show ? View.VISIBLE : View.GONE);
getChartsHost().getDateBar().setVisibility(show ? View.VISIBLE : View.INVISIBLE);
}
@Override