mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 14:42:37 +01:00
Merge pull request #4469 from chimp1984/add-missing-method
Add getShowAccountUpdatesNotification which got deleted unintentionally
This commit is contained in:
commit
7c4273285e
1 changed files with 10 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue