Skip to content

Commit

Permalink
Fix Build
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandUI committed May 22, 2024
1 parent c6762ed commit 3deac50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public partial class ManualControlDialogViewModel: DialogViewModelBase<IEnumerab

private ManualControlDialogViewModel(IWalletModel walletModel, Wallet wallet)
{
CoinList = new CoinListViewModel(walletModel, walletModel.Coins, [], true);
CoinList = new CoinListViewModel(walletModel, walletModel.Coins, [], allowCoinjoiningCoinSelection: true, ignorePrivacyMode: true, allowSelection: true);

EnableBack = true;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public ExcludedCoinsViewModel(IWalletModel wallet)
{
_wallet = wallet;
var initialCoins = wallet.Coins.List.Items.Where(x => x.IsExcludedFromCoinJoin);
CoinList = new CoinListViewModel(wallet, initialCoins.ToList(), allowCoinjoiningCoinSelection: false, ignorePrivacyMode: true);
CoinList = new CoinListViewModel(wallet, wallet.Coins, initialCoins.ToList(), allowCoinjoiningCoinSelection: false, ignorePrivacyMode: true);
SetupCancel(enableCancel: true, enableCancelOnEscape: true, enableCancelOnPressed: true);
NextCommand = ReactiveCommand.Create(() => Close());
ToggleSelectionCommand = ReactiveCommand.Create(() => SelectAll(!CoinList.Selection.Any()));
Expand Down

0 comments on commit 3deac50

Please sign in to comment.