1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Bug 444054 - Make sure we build the right project

The call to CDTBuildAction's super updateSelection method
clears out some state. Make sure we call it even though we
want to always build CDT projects.

Change-Id: Ie5dc1f583bbcc04d85b7254a4b7c18ee50f02997
This commit is contained in:
Doug Schaefer 2017-11-27 11:00:27 -05:00
parent 3319c8596e
commit 68b441c16d

View file

@ -64,6 +64,9 @@ public class BuildGroup extends CViewActionGroup {
@Override
protected boolean updateSelection(IStructuredSelection s) {
// Call the super since it needs to clear out some settings
super.updateSelection(s);
// Always build CDT projects
return true;
}