chore: Fix deprecated ComboboxSpeedSearch constructor

This commit is contained in:
FalsePattern 2024-02-01 20:55:49 +01:00
parent 72e2ccc121
commit 37d843147d
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23

View file

@ -63,7 +63,7 @@ public class ZigToolchainPathChooserComboBox extends ComponentWithBrowseButton<C
super(new ComboBoxWithWidePopup<>(), null); super(new ComboBoxWithWidePopup<>(), null);
this.onTextChanged = onTextChanged; this.onTextChanged = onTextChanged;
new ComboboxSpeedSearch(getChildComponent()); ComboboxSpeedSearch.installOn(getChildComponent());
getChildComponent().setEditor(comboBoxEditor); getChildComponent().setEditor(comboBoxEditor);
getChildComponent().setEditable(true); getChildComponent().setEditable(true);