mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-03 04:06:45 +02:00
* use SortFilterModels to filter out advanced attributes when hidden * add GraphEditorSettings with persistent settings related to the GraphEditor
11 lines
202 B
QML
11 lines
202 B
QML
pragma Singleton
|
|
import Qt.labs.settings 1.0
|
|
|
|
|
|
/**
|
|
* Persistent Settings related to the GraphEditor module.
|
|
*/
|
|
Settings {
|
|
category: 'GraphEditor'
|
|
property bool showAdvancedAttributes: false
|
|
}
|