Преглед изворни кода

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

This matches other applications in the system. :^)
Andreas Kling пре 4 година
родитељ
комит
df29d58e19
2 измењених фајлова са 2 додато и 2 уклоњено
  1. 1 1
      Base/res/apps/PDFViewer.af
  2. 1 1
      Userland/Applications/PDFViewer/main.cpp

+ 1 - 1
Base/res/apps/PDFViewer.af

@@ -1,4 +1,4 @@
 [App]
-Name=PDFViewer
+Name=PDF Viewer
 Executable=/bin/PDFViewer
 Category=Graphics

+ 1 - 1
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>();