1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 17:18:11 +00:00

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
parent 94b74937d8
commit b9f81b91a6
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();
}