Skip to content

Commit

Permalink
Update SettingsValues.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Helium314 authored Mar 11, 2024
1 parent 13e9626 commit ef12ef7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ public class SettingsValues {
public final boolean mUsePersonalizedDicts;
public final boolean mUseDoubleSpacePeriod;
public final boolean mBlockPotentiallyOffensive;
public final String mSpaceHorizontalSwipe;
public final String mSpaceVerticalSwipe;
public final int mSpaceSwipeHorizontal;
public final int mSpaceSwipeVertical;
public final boolean mDeleteSwipeEnabled;
public final boolean mAutospaceAfterPunctuationEnabled;
public final boolean mClipboardHistoryEnabled;
Expand Down Expand Up @@ -192,8 +192,8 @@ public SettingsValues(final Context context, final SharedPreferences prefs, fina
|| mInputAttributes.mIsPasswordField;
mKeyboardHeightScale = prefs.getFloat(Settings.PREF_KEYBOARD_HEIGHT_SCALE, DEFAULT_SIZE_SCALE);
mDisplayOrientation = res.getConfiguration().orientation;
mSpaceHorizontalSwipe = Settings.readHorizontalSpaceSwipe(prefs);
mSpaceVerticalSwipe = Settings.readVerticalSpaceSwipe(prefs);
mSpaceSwipeHorizontal = Settings.readHorizontalSpaceSwipe(prefs);
mSpaceSwipeVertical = Settings.readVerticalSpaceSwipe(prefs);
mDeleteSwipeEnabled = Settings.readDeleteSwipeEnabled(prefs);
mAutospaceAfterPunctuationEnabled = Settings.readAutospaceAfterPunctuationEnabled(prefs);
mClipboardHistoryEnabled = Settings.readClipboardHistoryEnabled(prefs);
Expand Down

0 comments on commit ef12ef7

Please sign in to comment.