From 0050d1c611b139aea87f4ec2904f981a1537579d Mon Sep 17 00:00:00 2001 From: "yoonki.park" Date: Tue, 11 Sep 2012 22:14:24 +0900 Subject: [PATCH] [Title] remove SWT.VIRTUAL [Type] [Module] [Priority] [CQ#] [Redmine#] 6926 [Problem] [Cause] [Solution] [TestCase] --- .../src/org/tizen/common/connection/ui/TizenRemoteFileDialog.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/org.tizen.common.connection/src/org/tizen/common/connection/ui/TizenRemoteFileDialog.java b/org.tizen.common.connection/src/org/tizen/common/connection/ui/TizenRemoteFileDialog.java index e37a830..b098c87 100755 --- a/org.tizen.common.connection/src/org/tizen/common/connection/ui/TizenRemoteFileDialog.java +++ b/org.tizen.common.connection/src/org/tizen/common/connection/ui/TizenRemoteFileDialog.java @@ -302,7 +302,8 @@ public class TizenRemoteFileDialog { } private void createPathTree(Composite pParent) { - pathTree = new Tree(pParent, SWT.MULTI | SWT.FULL_SELECTION | SWT.VIRTUAL); + // if add SWT.VIRTUAL, horizontal scrol is not shown in case of Linux + pathTree = new Tree(pParent, SWT.MULTI | SWT.FULL_SELECTION); setTreeLayout(pathTree); } -- 2.7.4