Meshroom/meshroom/ui/qml/GraphEditor/GraphEditorSettings.qml
Abdelrahman AL MAROUK 6c2e9eb583 [ui] add option to only show modified attributes
In node attributes' editor, add an option to only show the modified
attributes (that are not output nor linked attributes)
2023-08-30 15:39:28 +02:00

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
}