Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix broken env toggle in developer settings. Fixes #528
Browse files Browse the repository at this point in the history
  • Loading branch information
Randall Barker committed Sep 15, 2018
1 parent 26cf841 commit 7a0859a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ public String getEnvironment() {
public void setEnvironment(String aEnv) {
SharedPreferences.Editor editor = mPrefs.edit();
editor.putString(mContext.getString(R.string.settings_key_env), aEnv);
editor.commit();
}

public float getBrowserWorldWidth() {
Expand Down

0 comments on commit 7a0859a

Please sign in to comment.