summaryrefslogtreecommitdiff
path: root/org.tizen.common.connection
diff options
context:
space:
mode:
authorshingil.kang <shingil.kang@samsung.com>2014-04-08 15:28:46 +0900
committershingil.kang <shingil.kang@samsung.com>2014-04-08 15:28:46 +0900
commitcece779d5d6f3b967bab3075b5d5c3913d4d3b4d (patch)
tree1ad327e71303b458f560976e6754689c326940cc /org.tizen.common.connection
parenta5291df312b40667a727ce95e011292d2b40f73e (diff)
downloadcommon-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-xorg.tizen.common.connection/src/org/tizen/common/connection/explorer/ConnectionExplorerPanel.java4
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);