Community
Participate
Working Groups
Eclipse 3.3M5 (and also at least M4) Linux-GTK In the "Target Platform" preference page, the list of plugins is fully reloaded on every keypress in the Location field. This. makes. it. very. tedious. to. type. a. new. location. For some reason, Win32 doesn't have this problem.
There is a difference in ModifyEvent behavior in the swt combo box on Linux I believe, which has not been addressed and won't be any time soon. I am afraid we have to find ta workaround.
Why is the Combo trying to reload in response to a selection change event anyway? Can't the reloading just be triggered by the reload button? If the "reload on selection change" is really desired on some platforms, a simple workaround would be to disable it only on Linux-GTK. fHomeText.addModifyListener(new ModifyListener() { public void modifyText(ModifyEvent e) { fNeedsReload = true; } }); fHomeText.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { if (fFirstClick) fFirstClick = false; else { fPluginsTab.handleReload(new ArrayList()); resetTargetProfile(); fNeedsReload = false; } } });
We have to take out this auto-load behavior as this is very annoying see also bug 59661 for a related issue but on all platforms. When the text is modified manually by the user, he will have to press 'Reload' to, well, reload. If he forgets to press 'Reload' and tries to exit the preference dialog, PDE will pop up a reminder and ask to reload for him or cancel. When the user chooses a new location via the Browse... button, we will auto-reload as usual.
*** Bug 184526 has been marked as a duplicate of this bug. ***