Skip to content

Commit

Permalink
fix: only call updateComposing() if not using LiquidKeyboard so t…
Browse files Browse the repository at this point in the history
…ab will not scroll back to the start
  • Loading branch information
goofyz committed Jan 16, 2024
1 parent b983342 commit db63dab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/osfans/trime/ime/core/Trime.java
Expand Up @@ -441,8 +441,8 @@ public void selectLiquidKeyboard(final int tabIndex) {
// 设置液体键盘处于隐藏状态
TabManager.get().setTabExited();
symbolInput.setVisibility(View.GONE);
updateComposing();
}
updateComposing();
mainInput.setVisibility(tabIndex >= 0 ? View.GONE : View.VISIBLE);
}

Expand Down

0 comments on commit db63dab

Please sign in to comment.