mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
10 lines
171 B
C++
10 lines
171 B
C++
|
|
#include "Editor.h"
|
||
|
|
#include "EditorWrapper.h"
|
||
|
|
|
||
|
|
void Editor::focusin_event(CEvent& event)
|
||
|
|
{
|
||
|
|
if (on_focus)
|
||
|
|
on_focus();
|
||
|
|
GTextEditor::focusin_event(event);
|
||
|
|
}
|