mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-31 18:58:51 -04:00
Use stresstest flag to disable animations
This commit is contained in:
parent
88951b5725
commit
37defe885d
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@
|
|||
package io.bitsquare.user;
|
||||
|
||||
import io.bitsquare.app.BitsquareEnvironment;
|
||||
import io.bitsquare.app.DevFlags;
|
||||
import io.bitsquare.app.Version;
|
||||
import io.bitsquare.btc.BitcoinNetwork;
|
||||
import io.bitsquare.btc.FeePolicy;
|
||||
|
@ -95,7 +96,7 @@ public final class Preferences implements Persistable {
|
|||
|
||||
// Persisted fields
|
||||
private String btcDenomination = MonetaryFormat.CODE_BTC;
|
||||
private boolean useAnimations = true;
|
||||
private boolean useAnimations = DevFlags.STRESS_TEST_MODE ? false : true;
|
||||
private final ArrayList<FiatCurrency> fiatCurrencies;
|
||||
private final ArrayList<CryptoCurrency> cryptoCurrencies;
|
||||
private BlockChainExplorer blockChainExplorerMainNet;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue