1
0
Fork 0
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:
David McKnight 2006-10-11 20:00:15 +00:00
parent 74a7f2d59e
commit f38e3e0581

View file

@ -779,7 +779,10 @@ public class SystemCommandsViewPart
if (source == _folder.getFolder())
{
updateActionStates();
if (_folder.getInput() != null)
{
updateActionStates();
}
}
}