Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added support for custom fonts

### Changed
- Space bar language label is now hidden for single-language users

### Fixed
- Fixed an issue where sound/vibration preferences were ignored after reboot ([#372])

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ class SimpleKeyboardIME : InputMethodService(), OnKeyboardActionListener, Shared
if (spaceKeyIndex != -1) {
val spaceKey = keys[spaceKeyIndex]
spaceKey.label = spaceKey.label.ifEmpty {
getKeyboardLanguageText(config.keyboardLanguage)
if (config.selectedLanguages.size > 1) getKeyboardLanguageText(config.keyboardLanguage) else ""
}
}

Expand Down
Loading