1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +02:00

Bug 345664 - Perform an automatic GO when selecting a new address from the list.

This commit is contained in:
Randy Rohrbach 2011-05-20 03:37:46 +00:00
parent 4a50f5a33e
commit 7bda52bcdb

View file

@ -257,6 +257,9 @@ public class MemoryBrowser extends ViewPart implements IDebugContextListener, IM
public void widgetDefaultSelected(SelectionEvent e) {
performGo(false);
}
public void widgetSelected(SelectionEvent e) {
performGo(false);
}
});
fGotoMemorySpaceControl.addSelectionListener(new SelectionAdapter() {