mirror of
https://github.com/monero-project/monero-gui
synced 2025-01-01 21:56:23 +01:00
fix undefined buildwithscanner
This commit is contained in:
parent
e826f7c1ec
commit
9c0002ad9a
2
main.qml
2
main.qml
@ -65,7 +65,7 @@ ApplicationWindow {
|
|||||||
property bool viewOnly: false
|
property bool viewOnly: false
|
||||||
property bool foundNewBlock: false
|
property bool foundNewBlock: false
|
||||||
property int timeToUnlock: 0
|
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
|
property int blocksToSync: 1
|
||||||
|
|
||||||
// true if wallet ever synchronized
|
// true if wallet ever synchronized
|
||||||
|
Loading…
Reference in New Issue
Block a user