mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Dont show bitcoinLocalhostNode popup if dev mode
This commit is contained in:
parent
a35aeb6e85
commit
511458b146
1 changed files with 1 additions and 1 deletions
|
@ -714,7 +714,7 @@ public class MainViewModel implements ViewModel {
|
|||
checkForCorruptedDataBaseFiles();
|
||||
|
||||
String bitcoinLocalhostNodeKey = "bitcoinLocalhostNode";
|
||||
if (bisqEnvironment.isBitcoinLocalhostNodeRunning() && preferences.showAgain(bitcoinLocalhostNodeKey)) {
|
||||
if (bisqEnvironment.isBitcoinLocalhostNodeRunning() && preferences.showAgain(bitcoinLocalhostNodeKey) && !DevEnv.isDevMode()) {
|
||||
new Popup<>().backgroundInfo(Res.get("popup.bitcoinLocalhostNode.msg"))
|
||||
.dontShowAgainId(bitcoinLocalhostNodeKey)
|
||||
.show();
|
||||
|
|
Loading…
Add table
Reference in a new issue