From d034a4c9f79ff0564f217e39f43cab0f1e2961ff Mon Sep 17 00:00:00 2001 From: Karsten Heimrich Date: Fri, 10 Oct 2008 19:08:57 +0000 Subject: [PATCH] * traverse the entry so that symlinks to files can be opened as well git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27957 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/showimage/ShowImageView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/showimage/ShowImageView.cpp b/src/apps/showimage/ShowImageView.cpp index bf403bd1ab..167684dadd 100644 --- a/src/apps/showimage/ShowImageView.cpp +++ b/src/apps/showimage/ShowImageView.cpp @@ -92,7 +92,7 @@ const uint32 kMsgPopUpMenuClosed = 'pmcl'; static bool entry_ref_is_file(const entry_ref *ref) { - BEntry entry(ref); + BEntry entry(ref, true); if (entry.InitCheck() != B_OK) return false;