mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-18 23:53:41 +02:00
Merge pull request #525
9c0002a
fix undefined buildwithscanner (Jaquee)
This commit is contained in:
commit
18eb7a02cc
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
|
||||
property var isMobile: (appWindow.width > 700) ? false : true
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user