Convenience

This commit is contained in:
M66B
2018-08-13 13:57:51 +00:00
parent 3314826120
commit 4db7c6e107

View File

@@ -66,7 +66,7 @@ abstract class ActivityBase extends AppCompatActivity implements SharedPreferenc
@Override
public void onSharedPreferenceChanged(SharedPreferences prefs, String key) {
Log.i(Helper.TAG, "Preference " + key + "=" + prefs.getAll().get(key));
if ("theme".equals(key))
if ("theme".equals(key) || "debug".equals(key))
recreate();
}
}