mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-24 00:33:48 +02:00
[197089] Need to set the filter when there is no separator in filter string
This commit is contained in:
parent
b41d2338ae
commit
599dc028c2
1 changed files with 6 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
||||||
* Martin Oberhuber (Wind River) - [189130] Move SystemIFileProperties from UI to Core
|
* Martin Oberhuber (Wind River) - [189130] Move SystemIFileProperties from UI to Core
|
||||||
* Xuan Chen (IBM) - [180671] [refresh] It is not possible to refresh editor with double clicking on it
|
* Xuan Chen (IBM) - [180671] [refresh] It is not possible to refresh editor with double clicking on it
|
||||||
* David Dykstal (IBM) - [160776] format file size according to client system conventions and locale
|
* David Dykstal (IBM) - [160776] format file size according to client system conventions and locale
|
||||||
|
* David McKnight (IBM) - [197089] Need to set the filter when there is no separator in filter string
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.files.ui.view;
|
package org.eclipse.rse.internal.files.ui.view;
|
||||||
|
@ -604,6 +605,11 @@ public class SystemViewRemoteFileAdapter
|
||||||
{
|
{
|
||||||
filter = filterString.substring(sepIndex + 1);
|
filter = filterString.substring(sepIndex + 1);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// fix for 197089
|
||||||
|
filter = filterString;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue