early-access version 1712
This commit is contained in:
parent
809715241e
commit
78dc92a58b
2 changed files with 4 additions and 16 deletions
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 1711.
|
||||
This is the source code for early-access 1712.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -720,21 +720,9 @@ void QtSoftwareKeyboardDialog::SetTextDrawType() {
|
|||
ui->line_edit_osk->setFocus();
|
||||
});
|
||||
|
||||
connect(ui->line_edit_osk, &QLineEdit::returnPressed, [this] {
|
||||
switch (bottom_osk_index) {
|
||||
case BottomOSKIndex::LowerCase:
|
||||
ui->button_ok->click();
|
||||
break;
|
||||
case BottomOSKIndex::UpperCase:
|
||||
ui->button_ok_shift->click();
|
||||
break;
|
||||
case BottomOSKIndex::NumberPad:
|
||||
ui->button_ok_num->click();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
});
|
||||
connect(
|
||||
ui->line_edit_osk, &QLineEdit::returnPressed, this,
|
||||
[this] { TranslateButtonPress(HIDButton::Plus); }, Qt::QueuedConnection);
|
||||
|
||||
ui->line_edit_osk->setPlaceholderText(
|
||||
QString::fromStdU16String(initialize_parameters.guide_text));
|
||||
|
|
Loading…
Reference in a new issue