Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Commit

Permalink
Automatic keyboard layout change for Swedish
Browse files Browse the repository at this point in the history
Added if statement to languagedialog.cpp to allow automatic switch to Swedish keyboard layout when Swedish language is chosen.
  • Loading branch information
Mangero committed Mar 21, 2015
1 parent 5a441c3 commit f3b6970
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions recovery/languagedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,10 @@ void LanguageDialog::changeLanguage(const QString &langcode)
{
defaultKeyboardLayout = "jp";
}
else if (langcode == "sv")
{
defaultKeyboardLayout = "se";
}
else
{
defaultKeyboardLayout = langcode;
Expand Down

0 comments on commit f3b6970

Please sign in to comment.