[Title] remove SWT.VIRTUAL
authoryoonki.park <yoonki.park@samsung.com>
Tue, 11 Sep 2012 13:14:24 +0000 (22:14 +0900)
committeryoonki.park <yoonki.park@samsung.com>
Tue, 11 Sep 2012 13:17:59 +0000 (22:17 +0900)
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#] 6926
[Problem]
[Cause]
[Solution]
[TestCase]

org.tizen.common.connection/src/org/tizen/common/connection/ui/TizenRemoteFileDialog.java

index e37a830..b098c87 100755 (executable)
@@ -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);
     }