mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-10 12:44:31 +00:00
desktop 'more' features fix
This commit is contained in:
parent
7bf4c6097a
commit
e5c99e6d99
1 changed files with 6 additions and 1 deletions
|
@ -310,7 +310,12 @@ class _DesktopWalletFeaturesState extends ConsumerState<DesktopWalletFeatures> {
|
||||||
);
|
);
|
||||||
|
|
||||||
final showMore = manager.hasPaynymSupport ||
|
final showMore = manager.hasPaynymSupport ||
|
||||||
manager.hasCoinControlSupport ||
|
(manager.hasCoinControlSupport &&
|
||||||
|
ref.watch(
|
||||||
|
prefsChangeNotifierProvider.select(
|
||||||
|
(value) => value.enableCoinControl,
|
||||||
|
),
|
||||||
|
)) ||
|
||||||
manager.coin == Coin.firo ||
|
manager.coin == Coin.firo ||
|
||||||
manager.coin == Coin.firoTestNet ||
|
manager.coin == Coin.firoTestNet ||
|
||||||
manager.hasWhirlpoolSupport;
|
manager.hasWhirlpoolSupport;
|
||||||
|
|
Loading…
Reference in a new issue