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 1d855bd commit 1ff7a52Copy full SHA for 1ff7a52
1 file changed
Source/Sidebar/Palettes.h
@@ -111,6 +111,13 @@ class PaletteList final : public Component
111
// make a new paletteItem,
112
auto const paletteItem = new PaletteItem(editor, this, itemTree);
113
addAndMakeVisible(items.add(paletteItem));
114
+
115
+ if (gainEditorFocus)
116
+ MessageManager::callAsync([_paletteItem = SafePointer(paletteItem)] {
117
+ if (_paletteItem)
118
+ _paletteItem->nameLabel.showEditor();
119
+ });
120
121
resized();
122
};
123
0 commit comments