1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 00:47:45 +00:00

Ladybird: Allow copying text in the js console

This commit is contained in:
Sebastian Zaha 2023-07-19 15:26:29 +02:00 committed by Linus Groh
parent 8e8f124ca9
commit d974142c7e
2 changed files with 13 additions and 1 deletions

View file

@ -13,6 +13,7 @@
#include <QBoxLayout>
#include <QLabel>
#include <QLineEdit>
#include <QMenu>
#include <QToolBar>
#include <QToolButton>
#include <QWidget>
@ -113,5 +114,6 @@ private:
bool m_is_history_navigation { false };
Ladybird::ConsoleWidget* m_console_widget { nullptr };
OwnPtr<QMenu> m_console_context_menu;
Ladybird::InspectorWidget* m_inspector_widget { nullptr };
};