mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-02-02 19:16:27 +00:00
fix undefined buildwithscanner
This commit is contained in:
parent
e826f7c1ec
commit
9c0002ad9a
1 changed files with 1 additions and 1 deletions
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
|
||||
|
|
Loading…
Reference in a new issue