1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:38:12 +00:00

PDFViewer+Base: Display application title as "PDF Viewer"

This matches other applications in the system. :^)
This commit is contained in:
Andreas Kling 2021-05-18 20:55:29 +02:00
parent eb9a0ace28
commit df29d58e19
2 changed files with 2 additions and 2 deletions

View file

@ -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>();