Revert "Refactoring, small improvements"

This reverts commit ee99ae3ecb.

This would cause existing widgets not to work anymore
This commit is contained in:
M66B
2019-11-15 13:58:34 +01:00
parent ee99ae3ecb
commit 7d551073d8
13 changed files with 36 additions and 38 deletions

View File

@@ -206,7 +206,7 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
prefs.edit().putBoolean("threading", checked).apply();
WidgetList.update(getContext());
WidgetUnified.update(getContext());
}
});
@@ -336,7 +336,7 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
prefs.edit().putBoolean("subject_top", checked).apply();
WidgetList.update(getContext());
WidgetUnified.update(getContext());
}
});
@@ -344,7 +344,7 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
prefs.edit().putBoolean("subject_italic", checked).apply();
WidgetList.update(getContext());
WidgetUnified.update(getContext());
}
});