mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52: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:
parent
3319c8596e
commit
68b441c16d
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue