X-Git-Url: http://ecere.com/cgi-bin/gitweb.cgi?p=ede;a=blobdiff_plain;f=tests%2Flibede%2FfileSystemBoxTestApp%2FFileSystemBoxTestApp.ec;h=a922c3618b2595d1ef3016b3c64e8ce0f15709af;hp=38f431322352c46dc4c2dfb11f23499d1f96d5ed;hb=b32d3e134f40dbcb2eeddec6f1ee748dd4ef9862;hpb=39ac950d76e2639fa795bd567b80d0fbbcd960e9;ds=sidebyside diff --git a/tests/libede/fileSystemBoxTestApp/FileSystemBoxTestApp.ec b/tests/libede/fileSystemBoxTestApp/FileSystemBoxTestApp.ec index 38f4313..a922c36 100644 --- a/tests/libede/fileSystemBoxTestApp/FileSystemBoxTestApp.ec +++ b/tests/libede/fileSystemBoxTestApp/FileSystemBoxTestApp.ec @@ -39,6 +39,7 @@ class FileListTab : TestTab FileSystemBox box { this; + navigateFolders = true; anchor = { left = 4, top = 4, right = 4, bottom = 4 }; }; } @@ -63,6 +64,7 @@ class FolderListTab : TestTab { this; foldersOnly = true; + navigateFolders = true; anchor = { left = 4, top = 4, right = 4, bottom = 4 }; }; } @@ -75,6 +77,7 @@ class FileTreeTab : TestTab { this; treeBranches = true; + navigateFolders = true; anchor = { left = 4, top = 4, right = 4, bottom = 4 }; }; } @@ -88,6 +91,7 @@ class FolderTreeTab : TestTab this; treeBranches = true; foldersOnly = true; + navigateFolders = true; anchor = { left = 4, top = 4, right = 4, bottom = 4 }; }; } @@ -100,6 +104,7 @@ class FileDetails : TestTab { this; details = true; // TODO: figure out why commented out (see FileSystemBox) code crashes the form designer + navigateFolders = true; anchor = { left = 4, top = 4, right = 4, bottom = 4 }; }; } @@ -112,6 +117,7 @@ class FilteredList : TestTab { this; extensions = "epj, ec"; + navigateFolders = true; anchor = { left = 4, top = 4, right = 4, bottom = 4 }; }; } @@ -124,7 +130,6 @@ class FilteredTree : TestTab { this; anchor = { left = 4, top = 4, right = 4, bottom = 4 }; - extensions = "txt, text, nfo, info"; treeBranches = true; }; @@ -138,6 +143,7 @@ class RootList : TestTab { this; path = "/"; + navigateFolders = true; anchor = { left = 4, top = 4, right = 4, bottom = 4 }; }; } @@ -150,9 +156,9 @@ class RootTree : TestTab { this; path = "/"; - anchor = { left = 4, top = 4, right = 4, bottom = 4 }; - treeBranches = true; + navigateFolders = true; + anchor = { left = 4, top = 4, right = 4, bottom = 4 }; }; }