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

HexEditor: Remove blinking of the cursor

This commit is contained in:
tetektoza 2023-12-13 22:42:47 +01:00 committed by Andreas Kling
parent daecf741d4
commit 1ea675a9ec
2 changed files with 2 additions and 25 deletions

View file

@ -86,8 +86,6 @@ private:
size_t m_position { 0 };
bool m_cursor_at_low_nibble { false };
EditMode m_edit_mode { Hex };
RefPtr<Core::Timer> m_blink_timer;
bool m_cursor_blink_active { false };
NonnullOwnPtr<HexDocument> m_document;
GUI::UndoStack m_undo_stack;
@ -110,8 +108,6 @@ private:
void did_change();
ErrorOr<void> did_complete_action(size_t position, u8 old_value, u8 new_value);
ErrorOr<void> did_complete_action(size_t position, ByteBuffer&& old_values, ByteBuffer&& new_values);
void reset_cursor_blink_state();
};
}