mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-10 17:55:39 +02:00
potential fix for 160294 - check for input before updating action states
This commit is contained in:
parent
74a7f2d59e
commit
f38e3e0581
1 changed files with 4 additions and 1 deletions
|
@ -779,7 +779,10 @@ public class SystemCommandsViewPart
|
|||
|
||||
if (source == _folder.getFolder())
|
||||
{
|
||||
updateActionStates();
|
||||
if (_folder.getInput() != null)
|
||||
{
|
||||
updateActionStates();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue