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

LibVT+Terminal: Don't set window title directly from TerminalWidget

Instead, have TerminalWidget provide an on_title_change hook.
This allows embedders to decide for themselves what to do if we receive
a "set terminal title" escape sequence.
This commit is contained in:
Andreas Kling 2019-10-21 22:07:59 +02:00
parent 3fa16dfae2
commit e9f6e1e287
3 changed files with 7 additions and 4 deletions

View file

@ -323,10 +323,8 @@ void TerminalWidget::paint_event(GPaintEvent& event)
void TerminalWidget::set_window_title(const StringView& title)
{
auto* w = window();
if (!w)
return;
w->set_title(title);
if (on_title_change)
on_title_change(title);
}
void TerminalWidget::invalidate_cursor()