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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

### Fixed
- Fixed some settings getting cut off on Android in portrait mode
- Fixed touch controls not getting enabled when enabling them for the first time

## [0.14.0] - 2026-03-16

Expand Down
6 changes: 5 additions & 1 deletion packages/nesd/lib/ui/settings/settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,11 @@ class SettingsController extends _$SettingsController {
final raw = _prefs.getString(settingsKey);

if (raw == null) {
final settings = Settings(bindings: defaultBindings);
final settings = Settings(
bindings: defaultBindings,
narrowTouchInputConfig: defaultPortraitConfig,
wideTouchInputConfig: defaultLandscapeConfig,
);

_prefs.setString(settingsKey, jsonEncode(settings.toJson()));

Expand Down
Loading