mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-13 07:02:34 +00:00
fix memory leak in extensions (#229)
This commit is contained in:
parent
7dfe62b96d
commit
99e6c5a733
4 changed files with 25 additions and 16 deletions
|
|
@ -18,7 +18,7 @@ public class SettingsComponent {
|
|||
private final YouServiceSelectionPanel youServiceSelectionPanel;
|
||||
|
||||
public SettingsComponent(Disposable parentDisposable, SettingsState settings) {
|
||||
serviceSelectionForm = new ServiceSelectionForm(settings);
|
||||
serviceSelectionForm = new ServiceSelectionForm(parentDisposable, settings);
|
||||
displayNameField = new JBTextField(settings.getDisplayName(), 20);
|
||||
youServiceSelectionPanel = new YouServiceSelectionPanel(parentDisposable);
|
||||
mainPanel = FormBuilder.createFormBuilder()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue