From dc2a9fb311e7f147d7c14ee1d66952f477eee8f6 Mon Sep 17 00:00:00 2001 From: Cosmo Borsky Date: Thu, 2 Dec 2021 04:23:59 -0500 Subject: [PATCH] keyboard: replace backtick with apostrophe (#23104) * Replace existing symbol with apostrophe Without `'`, I cannot type my WiFi password... though it might be time to rotate it. * Replace extra bactic with apostrophe Co-authored-by: Adeeb Shihadeh Co-authored-by: Adeeb Shihadeh old-commit-hash: faecf4e4c1b11748d8ad919bbd2e45a87de3e934 --- selfdrive/ui/qt/widgets/keyboard.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/qt/widgets/keyboard.cc b/selfdrive/ui/qt/widgets/keyboard.cc index e6e60e4097..1c59686535 100644 --- a/selfdrive/ui/qt/widgets/keyboard.cc +++ b/selfdrive/ui/qt/widgets/keyboard.cc @@ -126,7 +126,7 @@ Keyboard::Keyboard(QWidget *parent) : QFrame(parent) { std::vector> specials = { {"[","]","{","}","#","%","^","*","+","="}, {"_","\\","|","~","<",">","€","£","¥","•"}, - {"123",".",",","?","!","`",BACKSPACE_KEY}, + {"123",".",",","?","!","'",BACKSPACE_KEY}, {"ABC"," ",".",ENTER_KEY}, }; main_layout->addWidget(new KeyboardLayout(this, specials));