]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/model/Data.java
migrate account name filter to LiveData
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / Data.java
index 57e2774dee137c4a642c50a265d42a4c2a6f7ee6..43c6e3bd6315738d132bdd5e9f19cb7b10012d66 100644 (file)
@@ -40,7 +40,7 @@ public final class Data {
     public static ObservableList<MobileLedgerProfile> profiles =
             new ObservableList<>(new ArrayList<>());
     public static ObservableValue<Boolean> optShowOnlyStarred = new ObservableValue<>();
-    public static ObservableValue<String> accountFilter = new ObservableValue<>();
+    public static MutableLiveData<String> accountFilter = new MutableLiveData<>();
     public static void setCurrentProfile(MobileLedgerProfile newProfile) {
         MLDB.setOption(MLDB.OPT_PROFILE_UUID, newProfile.getUuid());
         profile.set(newProfile);