Merge pull request #4469 from chimp1984/add-missing-method

Add getShowAccountUpdatesNotification which got deleted unintentionally
This commit is contained in:
Christoph Atteneder 2020-09-03 17:32:54 +02:00 committed by GitHub
commit 7c4273285e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -681,10 +681,20 @@ public class MainViewModel implements ViewModel, BisqSetup.BisqSetupListener {
return marketPricePresentation.getPriceFeedComboBoxItems();
}
// We keep daoPresentation and accountPresentation support even it is not used atm. But if we add a new feature and
// add a badge again it will be needed.
@SuppressWarnings({"unused"})
public BooleanProperty getShowDaoUpdatesNotification() {
return daoPresentation.getShowDaoUpdatesNotification();
}
// We keep daoPresentation and accountPresentation support even it is not used atm. But if we add a new feature and
// add a badge again it will be needed.
@SuppressWarnings("unused")
public BooleanProperty getShowAccountUpdatesNotification() {
return accountPresentation.getShowAccountUpdatesNotification();
}
public BooleanProperty getShowSettingsUpdatesNotification() {
return settingsPresentation.getShowSettingsUpdatesNotification();
}