Skip to content

Commit

Permalink
fix navigation links from market view to offer view #974
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Jun 3, 2024
1 parent 879ed9b commit c3eaee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/src/main/java/haveno/desktop/main/MainView.java
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ protected Tooltip computeValue() {
settingsButtonWithBadge.getStyleClass().add("new");

navigation.addListener((viewPath, data) -> {
UserThread.execute(() -> {
UserThread.await(() -> {
if (viewPath.size() != 2 || viewPath.indexOf(MainView.class) != 0) return;

Class<? extends View> viewClass = viewPath.tip();
Expand Down

0 comments on commit c3eaee2

Please sign in to comment.