mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
fix for 99818
This commit is contained in:
parent
da21b10884
commit
7af727a38e
1 changed files with 2 additions and 1 deletions
|
@ -239,7 +239,8 @@ public class FileListControl {
|
|||
String result;
|
||||
switch (type) {
|
||||
case IOption.BROWSE_DIR :
|
||||
DirectoryDialog dialog = new DirectoryDialog(getParentShell(), SWT.OPEN);
|
||||
DirectoryDialog dialog = new DirectoryDialog(getParentShell(),
|
||||
SWT.OPEN|SWT.APPLICATION_MODAL);
|
||||
currentName = getText().getText();
|
||||
if(currentName != null && currentName.trim().length() != 0) {
|
||||
dialog.setFilterPath(currentName);
|
||||
|
|
Loading…
Add table
Reference in a new issue