File tree Expand file tree Collapse file tree 2 files changed +28
-8
lines changed Expand file tree Collapse file tree 2 files changed +28
-8
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "MicroPython.executeButton" : [
3
+ {
4
+ "text" : " ▶" ,
5
+ "tooltip" : " 运行" ,
6
+ "alignment" : " left" ,
7
+ "command" : " extension.executeFile" ,
8
+ "priority" : 3.5
9
+ }
10
+ ],
11
+ "MicroPython.syncButton" : [
12
+ {
13
+ "text" : " $(sync)" ,
14
+ "tooltip" : " 同步" ,
15
+ "alignment" : " left" ,
16
+ "command" : " extension.execute" ,
17
+ "priority" : 4
18
+ }
19
+ ]
20
+ }
Original file line number Diff line number Diff line change @@ -49,26 +49,26 @@ FluScrollablePage{
49
49
Layout .topMargin : - 6
50
50
code: ' FluPivot{
51
51
anchors.fill: parent
52
- FluPivotItem: {
53
- text : qsTr("All")
52
+ FluPivotItem {
53
+ title : qsTr("All")
54
54
contentItem: FluText{
55
55
text: qsTr("All emails go here.")
56
56
}
57
57
}
58
- FluPivotItem: {
59
- text : qsTr("Unread")
58
+ FluPivotItem {
59
+ title : qsTr("Unread")
60
60
contentItem: FluText{
61
61
text: qsTr("Unread emails go here.")
62
62
}
63
63
}
64
- FluPivotItem: {
65
- text : qsTr("Flagged")
64
+ FluPivotItem {
65
+ title : qsTr("Flagged")
66
66
contentItem: FluText{
67
67
text: qsTr("Flagged emails go here.")
68
68
}
69
69
}
70
- FluPivotItem: {
71
- text : qsTr("Urgent")
70
+ FluPivotItem {
71
+ title : qsTr("Urgent")
72
72
contentItem: FluText{
73
73
text: qsTr("Urgent emails go here.")
74
74
}
You can’t perform that action at this time.
0 commit comments