mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-06 19:53:36 +00:00
a57c0b414b
fixes #10330
9 lines
282 B
QML
9 lines
282 B
QML
import QtQml 2.15
|
|
|
|
/// Inline component was failing on Linux with "Cannot assign to property of unknown type" so we need to use a separate file for it.
|
|
QtObject {
|
|
property bool enabled: false
|
|
property var currentModel: root.layer1Networks
|
|
property int currentIndex: 0
|
|
}
|