Skip to content

Commit

Permalink
Misc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DHD2280 committed Apr 25, 2024
1 parent 77e2dd3 commit 714655d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
v.setVisibility(View.GONE);
if (mRemoveFolderPagination) param.setResult(null);
break;
default:
break;
}
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ public class HeaderClock extends XposedMods {
private TextView mOplusCarrier = null;

// Custom Clock Prefs
private boolean showHeaderClock;
private int clockStyle;
private boolean showHeaderClock = false;
private int clockStyle = 0;

private boolean centeredClockView;
private boolean centeredClockView = false;

// Stock Clock Prefs
private int stockClockRedStyle;
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/xml/qs_header_clock_prefs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:search="http://schemas.android.com/apk/it.dhd.oxygencustomizer.customprefs.preferencesearch">

<SwitchPreferenceCompat
android:defaultValue="true"
android:defaultValue="false"
android:key="qs_header_clock_custom_enabled"
android:summary="@string/qs_header_clock_enabled_summary"
android:title="@string/qs_header_clock_enabled"
Expand Down

0 comments on commit 714655d

Please sign in to comment.