mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Hide indication bar if only one page
Bug: 10923117 Change-Id: If81bf07ba2e7c4fff44a8832f98b4a393c15edc7
This commit is contained in:
parent
126d758c1e
commit
a4913994c2
@ -50,8 +50,9 @@ public class EmojiCategoryPageIndicatorView extends LinearLayout {
|
||||
|
||||
@Override
|
||||
protected void onDraw(Canvas canvas) {
|
||||
if (mCategoryPageSize == 0) {
|
||||
// If the category is not set yet, just clear and return.
|
||||
if (mCategoryPageSize <= 1) {
|
||||
// If the category is not set yet or contains only one category,
|
||||
// just clear and return.
|
||||
canvas.drawColor(0);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user