This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efm2.
View the commit online.
commit 90d4febf48244e9bb4ec8cc10d525a368e849c0f
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Thu Sep 11 10:07:42 2025 +0100
directory inner meta - move to .efm/ dir inside dir
keeps data in the .efm subdir - can still refer to files/icons in the
dir. if it wanted to keep that data in .efm then just refer with ./.efm/xxx
---
src/backends/default/open.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/backends/default/open.c b/src/backends/default/open.c
index 7fcef11..d494194 100644
--- a/src/backends/default/open.c
+++ b/src/backends/default/open.c
@@ -823,7 +823,7 @@ _file_add_mod_info(Eina_Strbuf *strbuf, const char *path, Eina_Bool delay)
else if ((stdst.st_mode & S_IFMT) == S_IFDIR)
{
cmd_strbuf_append(strbuf, "link-type", "dir");
- snprintf(buf2, sizeof(buf2), "%s/.dir.desktop", path);
+ snprintf(buf2, sizeof(buf2), "%s/.efm/.efm.dir.desktop", path);
desktop = efreet_desktop_get(buf2);
if (desktop)
{
@@ -941,7 +941,7 @@ _file_add_mod_info(Eina_Strbuf *strbuf, const char *path, Eina_Bool delay)
else if ((st.st_mode & S_IFMT) == S_IFDIR)
{
cmd_strbuf_append(strbuf, "type", "dir");
- snprintf(buf2, sizeof(buf2), "%s/.dir.desktop", path);
+ snprintf(buf2, sizeof(buf2), "%s/.efm/.efm.dir.desktop", path);
desktop = efreet_desktop_get(buf2);
if (desktop)
{
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.