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

KeyboardMapper: Reset modified flag after loading a file

This commit is contained in:
Karol Kosek 2021-11-07 10:55:33 +01:00 committed by Linus Groh
parent 2fd7506212
commit ae9e4c6f26

View file

@ -124,6 +124,7 @@ ErrorOr<void> KeyboardMapperWidget::load_map_from_file(const String& filename)
radio_button.set_checked(radio_button.name() == "map");
}
window()->set_modified(false);
update_window_title();
return {};
}