From 0bc1869019bc26a7c22ed235b206e6c1499c2529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Minisini?= Date: Mon, 8 Oct 2012 16:37:22 +0000 Subject: [PATCH] [DEVELOPMENT ENVIRONMENT] * NEW: Use 'open' icon for top-level project tree folders. git-svn-id: svn://localhost/gambas/trunk@5229 867c0c6c-44f3-4631-809d-bfa615b0a4ec --- app/src/gambas3/.src/Project.module | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/src/gambas3/.src/Project.module b/app/src/gambas3/.src/Project.module index 69edc3309..e11414163 100644 --- a/app/src/gambas3/.src/Project.module +++ b/app/src/gambas3/.src/Project.module @@ -1646,11 +1646,11 @@ Private Sub DoRefresh(Optional bReset As Boolean, Optional bDoNotRefreshCache As sKey = Project.Dir .Add(sKey, Name, GetIcon(Project.Dir, 16)) - .Add(KEY_PROJECT, ("Project"), Picture["icon:/small/directory"], sKey) - .Add(KEY_SOURCE, ("Sources"), Picture["icon:/small/directory"], sKey) - If Components.Exist("gb.db") Then .Add(KEY_CONNECTION, ("Connections"), Picture["icon:/small/directory"], sKey) - If Components.Exist("gb.web") Then .Add(KEY_PUBLIC, ("Public"), Picture["icon:/small/directory"], sKey) - .Add(KEY_MISC, ("Data"), Picture["icon:/small/directory"], sKey) + .Add(KEY_PROJECT, ("Project"), Picture["icon:/small/open"], sKey) + .Add(KEY_SOURCE, ("Sources"), Picture["icon:/small/open"], sKey) + If Components.Exist("gb.db") Then .Add(KEY_CONNECTION, ("Connections"), Picture["icon:/small/open"], sKey) + If Components.Exist("gb.web") Then .Add(KEY_PUBLIC, ("Public"), Picture["icon:/small/open"], sKey) + .Add(KEY_MISC, ("Data"), Picture["icon:/small/open"], sKey) '$bGetSource = TRUE