mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-03 04:06:45 +02:00
In node attributes' editor, add an option to only show the modified attributes (that are not output nor linked attributes)
13 lines
292 B
QML
13 lines
292 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 showOnlyModifiedAttributes: false
|
|
property bool lockOnCompute: true
|
|
}
|