1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:27:35 +00:00

PDFViewer: Hide the rendering diagnostics window by default

You can enable it in the Debug menu and we will remember your choice.
This commit is contained in:
Kyle Lanmon 2024-03-03 17:25:31 -06:00 committed by Andreas Kling
parent d6ab5c9b7d
commit a099d0e140
5 changed files with 31 additions and 4 deletions

View file

@ -14,6 +14,7 @@
#include <LibGUI/ActionGroup.h>
#include <LibGUI/CheckBox.h>
#include <LibGUI/NumericInput.h>
#include <LibGUI/Splitter.h>
#include <LibGUI/Widget.h>
class PDFViewer;
@ -39,6 +40,7 @@ private:
RefPtr<PDFViewer> m_viewer;
RefPtr<SidebarWidget> m_sidebar;
NonnullRefPtr<PagedErrorsModel> m_paged_errors_model;
RefPtr<GUI::VerticalSplitter> m_vertical_splitter;
RefPtr<GUI::TreeView> m_errors_tree_view;
RefPtr<GUI::NumericInput> m_page_text_box;
RefPtr<GUI::Label> m_total_page_label;