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

KeyboardMapper: Stylize title as "Keyboard Mapper"

We already do this in the about dialog and across the system in general.
This commit is contained in:
Linus Groh 2021-05-12 23:06:06 +01:00
parent 76c6bc3186
commit 847a49209e

View file

@ -277,7 +277,7 @@ void KeyboardMapperWidget::update_window_title()
sb.append(m_filename);
if (m_modified)
sb.append(" (*)");
sb.append(" - KeyboardMapper");
sb.append(" - Keyboard Mapper");
window()->set_title(sb.to_string());
}