From 5b09473c522cff464d27ed567ff977d633820775 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 10 May 2022 12:33:12 +0900 Subject: [PATCH] Fix small glitch with status bar message of 'man' link. Signed-off-by: Michele Calgaro --- src/appimpl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/appimpl.cpp b/src/appimpl.cpp index 913ae0d..b9659aa 100644 --- a/src/appimpl.cpp +++ b/src/appimpl.cpp @@ -215,6 +215,7 @@ void AppImpl::createManPageEntry(TQValueList &list, const TQStr addAtom(entry, TDEIO::UDS_FILE_TYPE, S_IFREG); addAtom(entry, TDEIO::UDS_MIME_TYPE, 0, "application/x-desktop"); addAtom(entry, TDEIO::UDS_ICON_NAME, 0, "man"); + addAtom(entry, TDEIO::UDS_SIZE, 0, ""); list.append(entry); }