X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fmodel%2FData.java;h=f0ba846ec05d9271a7c4f390631cde6a9906c4e5;hb=f0fecef867dd49fe41fc733c11418f95a270be4a;hp=6d51287f35bfa6a74c138a15d4dbb0f83143b818;hpb=9a56eed6dcbfe4434a9a46b198320c16b288d86f;p=mobile-ledger-staging.git diff --git a/app/src/main/java/net/ktnx/mobileledger/model/Data.java b/app/src/main/java/net/ktnx/mobileledger/model/Data.java index 6d51287f..f0ba846e 100644 --- a/app/src/main/java/net/ktnx/mobileledger/model/Data.java +++ b/app/src/main/java/net/ktnx/mobileledger/model/Data.java @@ -59,7 +59,10 @@ public final class Data { public static final MutableLiveData lastUpdateDate = new MutableLiveData<>(null); public static final MutableLiveData lastUpdateTransactionCount = new MutableLiveData<>(0); - public static final ObservableValue lastUpdateText = new ObservableValue<>(); + public static final MutableLiveData lastUpdateAccountCount = new MutableLiveData<>(0); + public static final ObservableValue lastTransactionsUpdateText = + new ObservableValue<>(); + public static final ObservableValue lastAccountsUpdateText = new ObservableValue<>(); private static final MutableLiveData profile = new InertMutableLiveData<>(); private static final AtomicInteger backgroundTaskCount = new AtomicInteger(0); @@ -89,7 +92,7 @@ public final class Data { } public static void setCurrentProfile(@NonNull MobileLedgerProfile newProfile) { MLDB.setOption(MLDB.OPT_PROFILE_UUID, newProfile.getUuid()); - profile.setValue(newProfile); + profile.postValue(newProfile); } public static int getProfileIndex(MobileLedgerProfile profile) { try (LockHolder ignored = profilesLocker.lockForReading()) {