1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:57:44 +00:00

Ladybird: Clean up tab bar autohide

Qt has this feature built-in, so there's no need to create a custom
implementation
This commit is contained in:
Aaron Dewes 2022-09-22 18:23:59 +02:00 committed by Andrew Kaster
parent bdce860ac5
commit eecee7369f
2 changed files with 1 additions and 11 deletions

View file

@ -11,7 +11,6 @@
#include <QLineEdit>
#include <QMainWindow>
#include <QMenuBar>
#include <QTabBar>
#include <QTabWidget>
#include <QToolBar>
@ -44,7 +43,6 @@ private:
void debug_request(String const& request, String const& argument = "");
QTabWidget* m_tabs_container { nullptr };
QTabBar* m_tabs_bar { nullptr };
NonnullOwnPtrVector<Tab> m_tabs;
Tab* m_current_tab { nullptr };
};