Skip to content

Commit

Permalink
Adjust CZ keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
procount committed Feb 19, 2024
1 parent 41467ae commit 35b3d08
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
9 changes: 9 additions & 0 deletions history.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ PINN is a version of the NOOBS Operating System Installer for the Raspberry Pi w

## Change History

### V3.8.7f

- **Usability** - Updated info message when updating PINN'
- **Translation** - Fixed selection of CZ keyboard'

### V3.8.7e

- **Translation** - Updated Italian translation'

### V3.8.7d

- **Translation** - Added Czech translation thanks to Jan
Expand Down
2 changes: 1 addition & 1 deletion recovery/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


/* Version number displayed in the title bar */
#define VERSION_NUMBER "3.8.7e"
#define VERSION_NUMBER "3.8.7f"

/* Color of the background */
// #define BACKGROUND_COLOR Qt::white
Expand Down
4 changes: 4 additions & 0 deletions recovery/languagedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,10 @@ void LanguageDialog::changeLanguage(const QString &langcode)
{
defaultKeyboardLayout = "se";
}
else if (langcode == "cs")
{
defaultKeyboardLayout = "cz";
}
else
{
defaultKeyboardLayout = langcode.left(2); /* Use only 2 letter keyboard code as best guess */
Expand Down

0 comments on commit 35b3d08

Please sign in to comment.