mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 07:35:24 +02:00
dont' mark a container stale in the table provider (let the refresh action take care of that) fix for 149188
This commit is contained in:
parent
2e7912869b
commit
fa18bd792c
2 changed files with 3 additions and 3 deletions
|
@ -935,8 +935,8 @@ public class SystemTableView
|
|||
if (provider != null)
|
||||
{
|
||||
if (!madeChange)
|
||||
{
|
||||
provider.flushCache();
|
||||
{
|
||||
provider.flushCache();
|
||||
madeChange = true;
|
||||
}
|
||||
|
||||
|
|
|
@ -339,7 +339,7 @@ public class SystemTableViewProvider implements ILabelProvider, ITableLabelProvi
|
|||
}
|
||||
if (_lastObject instanceof ISystemContainer)
|
||||
{
|
||||
((ISystemContainer)_lastObject).markStale(true);
|
||||
// ((ISystemContainer)_lastObject).markStale(true);
|
||||
}
|
||||
|
||||
_lastResults = null;
|
||||
|
|
Loading…
Add table
Reference in a new issue