early-access version 1712

main
pineappleEA 2021-05-26 04:24:28 +02:00
parent 809715241e
commit 78dc92a58b
2 changed files with 4 additions and 16 deletions

View File

@ -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

View File

@ -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));