Virtual Keyboard: Fix detection of v_align option when used in the keyboard definition.
svn-id: r41232
This commit is contained in:
parent
22ab4cc4c4
commit
4ceec0dfbb
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ bool VirtualKeyboardParser::parserCallback_keyboard(ParserNode *node) {
|
|||
}
|
||||
|
||||
if (node->values.contains("v_align")) {
|
||||
String v = node->values["h_align"];
|
||||
String v = node->values["v_align"];
|
||||
if (v.equalsIgnoreCase("top"))
|
||||
_keyboard->_vAlignment = VirtualKeyboard::kAlignTop;
|
||||
else if (v.equalsIgnoreCase("middle") || v.equalsIgnoreCase("center"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue