diff options
author | shingil.kang <shingil.kang@samsung.com> | 2014-04-08 15:28:46 +0900 |
---|---|---|
committer | shingil.kang <shingil.kang@samsung.com> | 2014-04-08 15:28:46 +0900 |
commit | cece779d5d6f3b967bab3075b5d5c3913d4d3b4d (patch) | |
tree | 1ad327e71303b458f560976e6754689c326940cc /org.tizen.common.connection | |
parent | a5291df312b40667a727ce95e011292d2b40f73e (diff) | |
download | common-eplugin-cece779d5d6f3b967bab3075b5d5c3913d4d3b4d.tar.gz common-eplugin-cece779d5d6f3b967bab3075b5d5c3913d4d3b4d.tar.bz2 common-eplugin-cece779d5d6f3b967bab3075b5d5c3913d4d3b4d.zip |
TOOLS: Checked if tree item is selected when pulling files in the Connection Explorer.
Change-Id: I0cb063479348440786f22ece472b634ac4b4c51a
Signed-off-by: shingil.kang <shingil.kang@samsung.com>
Diffstat (limited to 'org.tizen.common.connection')
-rwxr-xr-x | org.tizen.common.connection/src/org/tizen/common/connection/explorer/ConnectionExplorerPanel.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/org.tizen.common.connection/src/org/tizen/common/connection/explorer/ConnectionExplorerPanel.java b/org.tizen.common.connection/src/org/tizen/common/connection/explorer/ConnectionExplorerPanel.java index 45f41c6fe..af7c1c520 100755 --- a/org.tizen.common.connection/src/org/tizen/common/connection/explorer/ConnectionExplorerPanel.java +++ b/org.tizen.common.connection/src/org/tizen/common/connection/explorer/ConnectionExplorerPanel.java @@ -622,6 +622,10 @@ public class ConnectionExplorerPanel implements IDeviceChangeListener, IDebugBri public void pullSelection() { FileEntry[] selectedFileEntry = getMultiFileEntry(); + if(selectedFileEntry == null) + { + return; + } DirectoryDialog dlg = new DirectoryDialog(parent.getShell(), SWT.SAVE); |