Fix the number row showing up on top of pinentry

This wasn't intended and was caused by the "current_layout_unmodified"
optimisation.
This commit is contained in:
Jules Aguillon 2023-12-21 20:59:30 +01:00
parent 2aecbca9ac
commit 2db4ae3730

View File

@ -57,6 +57,8 @@ public class Keyboard2 extends InputMethodService
/** Layout currently visible. */
KeyboardData current_layout()
{
if (_currentSpecialLayout != null)
return _currentSpecialLayout;
return _config.modify_layout(current_layout_unmodified());
}