Changeset 90909 in vbox
- Timestamp:
- Aug 26, 2021 12:21:08 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146545
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserHandlerKeyboard.cpp
r84610 r90909 305 305 default: 306 306 { 307 /* Start lookup : */307 /* Start lookup only for non-empty and alphanumerical strings: */ 308 308 const QString strText = pEvent->text(); 309 if (!strText.isEmpty() )309 if (!strText.isEmpty() && !strText.contains(QRegExp("[^A-Za-z0-9]", Qt::CaseInsensitive))) 310 310 model()->lookFor(strText); 311 311 break;
Note:
See TracChangeset
for help on using the changeset viewer.