File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -82,11 +82,8 @@ ApplicationWindow {
82
82
interactive: false
83
83
orientation: Qt .Vertical
84
84
NodeRunner {
85
- navRightDetail: NavButton {
86
- iconSource: " image://images/gear"
87
- iconHeight: 24
88
- iconWidth: 24
89
- onClicked: node_swipe .incrementCurrentIndex ()
85
+ onSettingsClicked: {
86
+ node_swipe .incrementCurrentIndex ()
90
87
}
91
88
}
92
89
NodeSettings {
Original file line number Diff line number Diff line change @@ -9,11 +9,17 @@ import "../../controls"
9
9
import "../../components"
10
10
11
11
Page {
12
+ signal settingsClicked
13
+ id: root
12
14
background: null
13
15
clip: true
14
- property alias navRightDetail: navbar .rightDetail
15
- header: NavigationBar {
16
- id: navbar
16
+ header: NavigationBar2 {
17
+ rightItem: NavButton {
18
+ iconSource: " image://images/gear"
19
+ iconHeight: 24
20
+ iconWidth: 24
21
+ onClicked: root .settingsClicked ()
22
+ }
17
23
}
18
24
19
25
Component .onCompleted : nodeModel .startNodeInitializionThread ();
You can’t perform that action at this time.
0 commit comments