diff --git a/doomsday/apps/client/src/ui/widgets/packagepopupwidget.cpp b/doomsday/apps/client/src/ui/widgets/packagepopupwidget.cpp index 19c1893715..d8d4dff00e 100644 --- a/doomsday/apps/client/src/ui/widgets/packagepopupwidget.cpp +++ b/doomsday/apps/client/src/ui/widgets/packagepopupwidget.cpp @@ -65,6 +65,11 @@ bool PackagePopupWidget::setup(File const *file) msg += "\n" _E(l) "Author(s): " _E(.)_E(>) + meta.gets("author") + _E(<); } + if (meta.has("notes")) + { + msg += "\n\n" + meta.gets("notes") + "\n"; + } + if (meta.has("requires")) { msg += "\n" _E(l) "Requires:" _E(.); @@ -85,11 +90,6 @@ bool PackagePopupWidget::setup(File const *file) } } - if (meta.has("notes")) - { - msg += "\n\n" + meta.gets("notes"); - } - document().setText(msg); return true; } diff --git a/doomsday/apps/client/src/ui/widgets/packageswidget.cpp b/doomsday/apps/client/src/ui/widgets/packageswidget.cpp index 3be3343d17..89ec5425cc 100644 --- a/doomsday/apps/client/src/ui/widgets/packageswidget.cpp +++ b/doomsday/apps/client/src/ui/widgets/packageswidget.cpp @@ -377,7 +377,7 @@ DENG_GUI_PIMPL(PackagesWidget) if (!item.info) return false; - bool const hidden = Package::tags(item.info->gets(VAR_TAGS)).contains(TAG_HIDDEN); + bool const hidden = Package::matchTags(*item.file, QStringLiteral("\\bhidden\\b")); if (showHidden ^ hidden) { return false;