diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-18 20:55:29 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-18 21:00:32 +0200 |
commit | df29d58e19e1325badeacee51e5674ff6b9e1416 (patch) | |
tree | 68f57d19c428b8ac2c0b177249353002c922f73b /Userland | |
parent | eb9a0ace280a207640c148c07ef797dc93493b3d (diff) | |
download | serenity-df29d58e19e1325badeacee51e5674ff6b9e1416.zip |
PDFViewer+Base: Display application title as "PDF Viewer"
This matches other applications in the system. :^)
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Applications/PDFViewer/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<PDFViewerWidget>(); |