Remove empty strings from button_text before adding buttons
This commit is contained in:
parent
c4ba7b3626
commit
1255d94baa
@ -201,7 +201,8 @@ Frontend::KeyboardConfig SoftwareKeyboard::ToFrontendConfig(
|
|||||||
});
|
});
|
||||||
if (frontend_config.has_custom_button_text) {
|
if (frontend_config.has_custom_button_text) {
|
||||||
for (const auto& text : config.button_text) {
|
for (const auto& text : config.button_text) {
|
||||||
frontend_config.button_text.push_back(Common::UTF16BufferToUTF8(text));
|
if (text.front() != 0)
|
||||||
|
frontend_config.button_text.push_back(Common::UTF16BufferToUTF8(text));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
frontend_config.filters.prevent_digit =
|
frontend_config.filters.prevent_digit =
|
||||||
|
Loading…
Reference in New Issue
Block a user