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

Ladybird: Show current zoom level in view menu

This commit is contained in:
MacDue 2023-03-26 18:56:17 +01:00 committed by Linus Groh
parent b22052c0dd
commit 9dbfba0879
2 changed files with 35 additions and 12 deletions

View file

@ -59,9 +59,13 @@ private:
void debug_request(DeprecatedString const& request, DeprecatedString const& argument = "");
void set_current_tab(Tab* tab);
void update_zoom_menu_text();
QTabWidget* m_tabs_container { nullptr };
Vector<NonnullOwnPtr<Tab>> m_tabs;
Tab* m_current_tab { nullptr };
QMenu* m_zoom_menu { nullptr };
Browser::CookieJar& m_cookie_jar;