TextEditor: Update status bar to use clickable Segments

Adds two new Segments to TextEditor's status bar to quickly
change and display syntax highlighting and line and column info.
This commit is contained in:
thankyouverycool 2022-02-22 15:03:16 -05:00 committed by Andreas Kling
commit b9f81b91a6
Notes: sideshowbarker 2024-07-19 01:59:31 +09:00
3 changed files with 55 additions and 5 deletions

View file

@ -88,6 +88,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
}
}
text_widget->update_title();
text_widget->update_statusbar();
return app->exec();
}