You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Add all tracks in this category to the current selection. This allows you to perform bulk operations on multiple tracks at once, such as configuring settings or exporting track configurations.',
90
80
},
91
81
{
92
82
label: 'Remove from selection',
93
83
onClick: ()=>{
94
84
constr=treeToMap(tree).get(id)
95
85
model.removeFromSelection(getAllChildren(r))
96
86
},
87
+
helpText:
88
+
'Remove all tracks in this category from the current selection. Use this to deselect tracks that were previously added to your selection.',
97
89
},
98
90
{
99
91
label: 'Show all',
@@ -104,6 +96,8 @@ export default function Category({
104
96
}
105
97
}
106
98
},
99
+
helpText:
100
+
'Display all tracks in this category on the current view. This is useful when you want to visualize multiple related tracks simultaneously to compare their data.',
107
101
},
108
102
{
109
103
label: 'Hide all',
@@ -114,6 +108,8 @@ export default function Category({
114
108
}
115
109
}
116
110
},
111
+
helpText:
112
+
'Hide all tracks in this category from the current view. This helps declutter your view by removing tracks you are not currently analyzing.',
117
113
},
118
114
...(hasSubcategories
119
115
? [
@@ -127,6 +123,8 @@ export default function Category({
127
123
}
128
124
}
129
125
},
126
+
helpText:
127
+
'Collapse all nested subcategories within this category. This provides a cleaner, more compact view of the track hierarchy by hiding the detailed contents of subcategories.',
130
128
},
131
129
{
132
130
label: 'Expand all subcategories',
@@ -138,21 +136,20 @@ export default function Category({
138
136
}
139
137
}
140
138
},
139
+
helpText:
140
+
'Expand all nested subcategories within this category. This reveals all tracks and subcategories at once, making it easier to browse and select tracks from the entire hierarchy.',
0 commit comments