From df29d58e19e1325badeacee51e5674ff6b9e1416 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 18 May 2021 20:55:29 +0200 Subject: [PATCH] PDFViewer+Base: Display application title as "PDF Viewer" This matches other applications in the system. :^) --- Base/res/apps/PDFViewer.af | 2 +- Userland/Applications/PDFViewer/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Base/res/apps/PDFViewer.af b/Base/res/apps/PDFViewer.af index 03e79885a3..0feb811b26 100644 --- a/Base/res/apps/PDFViewer.af +++ b/Base/res/apps/PDFViewer.af @@ -1,4 +1,4 @@ [App] -Name=PDFViewer +Name=PDF Viewer Executable=/bin/PDFViewer Category=Graphics diff --git a/Userland/Applications/PDFViewer/main.cpp b/Userland/Applications/PDFViewer/main.cpp index 0f5e0ed38d..cb7e48dd0d 100644 --- a/Userland/Applications/PDFViewer/main.cpp +++ b/Userland/Applications/PDFViewer/main.cpp @@ -16,7 +16,7 @@ int main(int argc, char** argv) auto app_icon = GUI::Icon::default_icon("app-pdf-viewer"); auto window = GUI::Window::construct(); - window->set_title("PDFViewer"); + window->set_title("PDF Viewer"); window->resize(640, 400); auto& pdf_viewer_widget = window->set_main_widget();