1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Bug 311031: avoid swallowing double-click event

This commit is contained in:
Marc Khouzam 2010-04-29 14:30:57 +00:00
parent 39668b20a5
commit 84500ac336

View file

@ -145,12 +145,12 @@ public class AbstractLaunchVMProvider extends AbstractDMVMProvider
}
});
}
if (rm != null) {
rm.done();
}
return;
}
}
if (rm != null) {
rm.done();
}
return;
} else if (event instanceof IRunControl.ISuspendedDMEvent) {
final IExecutionDMContext exeContext= ((IRunControl.ISuspendedDMEvent) event).getDMContext();
ScheduledFuture<?> refreshStackFramesFuture = getRefreshFuture(exeContext);