We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9456f09 commit 25cadcbCopy full SHA for 25cadcb
app/src/processing/app/EditorToolbar.java
@@ -187,7 +187,10 @@ private void buildTouchBar() {
187
touchBarButtons[i].setImage(touchBarImages[i][ROLLOVER]);
188
touchBarButtons[i].setAction(event -> handleSelectionPressed(selection));
189
190
- touchBar.addItem(new TouchBarItem(title[i], touchBarButtons[i]));
+ TouchBarItem touchBarItem = new TouchBarItem(title[i], touchBarButtons[i], true);
191
+ touchBarItem.setCustomizationLabel(title[i]);
192
+
193
+ touchBar.addItem(touchBarItem);
194
}
195
196
0 commit comments