Opened 12 years ago
Closed 12 years ago
#6351 closed defect (fixed)
Turning off on screen keyboard disables keyboard space entry.
Reported by: | Owned by: | Isaac Richards | |
---|---|---|---|
Priority: | minor | Milestone: | unknown |
Component: | MythTV - General | Version: | head |
Severity: | low | Keywords: | keyboard |
Cc: | Ticket locked: | no |
Description
When I turn off the on screen keyboard feature subsequent use of the keyboard space bar in text input boxes is disabled.
Attachments (1)
Change History (3)
comment:1 Changed 12 years ago by
MythUITextEdit::keyPressEvent() swallows the SPACE key if no virtual keyboard is present. This happens because if the virtual keyboard has been turned off, we still enter the appropriate if-clause and thus never signal that we haven't actually handled the key. The patch above only changes the if clause, the rest is cosmetic for identation.
Note: See
TracTickets for help on using
tickets.
Fix MythUITextEdit::keyPressEvent()