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

Bug 487386 - [LaunchBar] Launching default configs resets target to no

target

Change-Id: If0d9724fe5f23d633dc1f5ab4d46363e1c00d3cf
This commit is contained in:
Alena Laskavaia 2016-02-08 09:13:41 -05:00
parent 353fe40897
commit 584728a7ae

View file

@ -179,6 +179,8 @@ public class LaunchBarManager implements ILaunchBarManager, ILaunchTargetListene
if (launch instanceof ITargetedLaunch) {
target = ((ITargetedLaunch) launch).getLaunchTarget();
}
if (target == null)
return;
if (launchDescriptorMatches(activeLaunchDesc, lc, target)) {
// active launch delegate may have changed target
try {