Skip to content
Open
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 app/src/main/java/com/totsp/crossword/PlayActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -1089,6 +1089,7 @@ protected void onResume() {
this.resumedOn = System.currentTimeMillis();
getBoard().setSkipCompletedLetters(this.prefs
.getBoolean("skipFilled", false));
movement = null;
getBoard().setMovementStrategy(this.getMovementStrategy());

int keyboardType = "CONDENSED_ARROWS".equals(prefs.getString(
Expand Down
12 changes: 11 additions & 1 deletion app/src/main/java/com/totsp/crossword/SettingsActivity.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package com.totsp.crossword;

import android.os.Bundle;
import android.view.MenuItem;

import androidx.annotation.NonNull;

import com.totsp.crossword.shortyz.R;

Expand Down Expand Up @@ -29,5 +32,12 @@ public void onBackPressed() {
}
}


@Override
public boolean onOptionsItemSelected(@NonNull MenuItem item) {
if (item.getItemId() == android.R.id.home) {
finish();
return true;
}
return false;
}
}