1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 07:35:24 +02:00

[173518] parent files need to be marked stale

This commit is contained in:
David McKnight 2007-06-07 14:45:36 +00:00
parent 8bdf166c81
commit aa7d983552

View file

@ -13,6 +13,7 @@
*
* Contributors:
* Martin Oberhuber (Wind River) - [177523] Unify singleton getter methods
* David McKnight (IBM) - [173518] [refresh] Read only changes are not shown in RSE until the parent folder is refreshed
*******************************************************************************/
package org.eclipse.rse.subsystems.files.core.subsystems;
@ -909,7 +910,14 @@ public abstract class RemoteFile implements IRemoteFile, IAdaptable, Comparable
}
}
}
}
}
if (_parentFile != null)
{
_parentFile.markStale(true, false);
}
}
}