mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 15:45:25 +02:00
[164118] - fix for moved file not showing under filter - problem is that target filter needs to be invalidated during the copy/move operation
This commit is contained in:
parent
9910ab7073
commit
c42d357e71
1 changed files with 10 additions and 0 deletions
|
@ -412,6 +412,16 @@ public class SystemCopyRemoteFileAction extends SystemBaseCopyAction
|
|||
{
|
||||
str = str.substring(0, lastSep);
|
||||
}
|
||||
IRemoteFile par = null;
|
||||
try
|
||||
{
|
||||
par = fileSS.getRemoteFileObject(str);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
}
|
||||
|
||||
str = par.getAbsolutePath();
|
||||
|
||||
//if (StringCompare.compare(str, path, true))
|
||||
if (str.equals(path))
|
||||
|
|
Loading…
Add table
Reference in a new issue