forked from Public/monero-gui
fix undefined buildwithscanner
This commit is contained in:
2
main.qml
2
main.qml
@@ -65,7 +65,7 @@ ApplicationWindow {
|
||||
property bool viewOnly: false
|
||||
property bool foundNewBlock: false
|
||||
property int timeToUnlock: 0
|
||||
property bool qrScannerEnabled: builtWithScanner && (QtMultimedia.availableCameras.length > 0)
|
||||
property bool qrScannerEnabled: (typeof builtWithScanner != "undefined") && builtWithScanner && (QtMultimedia.availableCameras.length > 0)
|
||||
property int blocksToSync: 1
|
||||
|
||||
// true if wallet ever synchronized
|
||||
|
||||
Reference in New Issue
Block a user