mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
change type and name of enable zbar config variable
This commit is contained in:
parent
f88628c469
commit
b0883f034b
2 changed files with 4 additions and 8 deletions
|
@ -58,7 +58,7 @@ public class Config {
|
|||
private int enumerateHwPeriod = ENUMERATE_HW_PERIOD_SECS;
|
||||
private QRDensity qrDensity;
|
||||
private Boolean hdCapture;
|
||||
private Boolean zbarScan;
|
||||
private boolean useZbar = true;
|
||||
private String webcamDevice;
|
||||
private ServerType serverType;
|
||||
private Server publicElectrumServer;
|
||||
|
@ -405,12 +405,8 @@ public class Config {
|
|||
flush();
|
||||
}
|
||||
|
||||
public Boolean isZbarScan() {
|
||||
return zbarScan == null || zbarScan;
|
||||
}
|
||||
|
||||
public void setZbarScan(Boolean zbarScan) {
|
||||
this.zbarScan = zbarScan;
|
||||
public boolean isUseZbar() {
|
||||
return useZbar;
|
||||
}
|
||||
|
||||
public String getWebcamDevice() {
|
||||
|
|
|
@ -15,7 +15,7 @@ public class ZBar {
|
|||
private final static boolean enabled;
|
||||
|
||||
static { // static initializer
|
||||
if(com.sparrowwallet.sparrow.io.Config.get().isZbarScan()) {
|
||||
if(com.sparrowwallet.sparrow.io.Config.get().isUseZbar()) {
|
||||
enabled = loadLibrary();
|
||||
} else {
|
||||
enabled = false;
|
||||
|
|
Loading…
Reference in a new issue