mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
5473e3b14e
fixes #12717
9 lines
261 B
QML
9 lines
261 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
|
|
property int currentIndex: 0
|
|
}
|