1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

HexEditor: Added fill selection action.

Added the ability to fill the current selection with a given byte.
This commit is contained in:
Brandon Scott 2019-10-26 16:27:26 -05:00 committed by Andreas Kling
parent f947353a56
commit c77fe5161c
3 changed files with 23 additions and 0 deletions

View file

@ -22,6 +22,7 @@ public:
void set_readonly(bool);
void set_buffer(const ByteBuffer&);
void fill_selection(u8 fill_byte);
bool write_to_file(const StringView& path);
bool copy_selected_text_to_clipboard();