mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-01 19:27:10 +02:00
* lock edit actions when graph is being computed * add an advanced option to control this behavior and unlock it (stored in persistent settings)
12 lines
240 B
QML
12 lines
240 B
QML
pragma Singleton
|
|
import Qt.labs.settings 1.0
|
|
|
|
|
|
/**
|
|
* Persistent Settings related to the GraphEditor module.
|
|
*/
|
|
Settings {
|
|
category: 'GraphEditor'
|
|
property bool showAdvancedAttributes: false
|
|
property bool lockOnCompute: true
|
|
}
|