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

master
Daniele Gobbetti 2017-04-08 15:16:35 +02:00
parent de6ce1a3d7
commit 5a019c238a
1 changed files with 1 additions and 1 deletions

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