Refactoring, small improvements

This commit is contained in:
M66B
2019-11-15 13:25:05 +01:00
parent c5f6477311
commit ee99ae3ecb
13 changed files with 38 additions and 36 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();
WidgetUnified.update(getContext());
WidgetList.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();
WidgetUnified.update(getContext());
WidgetList.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();
WidgetUnified.update(getContext());
WidgetList.update(getContext());
}
});