mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 19:10:11 +01:00
Show seek bar only when action bar is shown
This commit is contained in:
@@ -389,9 +389,11 @@ public class FragmentMessages extends FragmentBase {
|
||||
|
||||
@Override
|
||||
public void onFound(int position, int size) {
|
||||
seekBar.setProgress(position);
|
||||
seekBar.setMax(size - 1);
|
||||
seekBar.setVisibility(View.VISIBLE);
|
||||
if (actionbar) {
|
||||
seekBar.setProgress(position);
|
||||
seekBar.setMax(size - 1);
|
||||
seekBar.setVisibility(View.VISIBLE);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user