Skip to content

Commit 77a0352

Browse files
committed
ForwardBackwardButtonContainer - R3 ConfigureAwait false
1 parent 89e7c93 commit 77a0352

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SharpIDE.Godot/Features/Navigation/ForwardBackwardButtonContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ await this.InvokeAsync(() =>
2424
_backwardButton.Disabled = !_navigationHistoryService.CanGoBack;
2525
_forwardButton.Disabled = !_navigationHistoryService.CanGoForward;
2626
});
27-
}).AddTo(this);
27+
}, configureAwait: false).AddTo(this);
2828
}
2929

3030
private void OnBackwardButtonPressed()

0 commit comments

Comments
 (0)