mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Add getShowAccountUpdatesNotification which got deleted unintentionally
at merge. 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.
This commit is contained in:
parent
b1c74ae9d1
commit
b3d48deb39
@ -681,10 +681,20 @@ public class MainViewModel implements ViewModel, BisqSetup.BisqSetupListener {
|
|||||||
return marketPricePresentation.getPriceFeedComboBoxItems();
|
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() {
|
public BooleanProperty getShowDaoUpdatesNotification() {
|
||||||
return daoPresentation.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() {
|
public BooleanProperty getShowSettingsUpdatesNotification() {
|
||||||
return settingsPresentation.getShowSettingsUpdatesNotification();
|
return settingsPresentation.getShowSettingsUpdatesNotification();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user