mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
cellOskDialog/osk_dialog_frame: fix regexp for CELL_OSKDIALOG_NO_SPACE
This commit is contained in:
parent
f902a7867c
commit
5ed718110a
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ void osk_dialog_frame::Create(const std::string& title, const std::u16string& me
|
|||
|
||||
if (options & CELL_OSKDIALOG_NO_SPACE)
|
||||
{
|
||||
input->setValidator(new QRegExpValidator(QRegExp("^\S*$"), this));
|
||||
input->setValidator(new QRegExpValidator(QRegExp("^\\S*$"), this));
|
||||
}
|
||||
|
||||
connect(input, &QLineEdit::textChanged, [=](const QString& text)
|
||||
|
|
Loading…
Add table
Reference in a new issue