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

HexEditor: Added navigate to a hex offset

Added the ability to navigate to a specified hex offset.
This commit is contained in:
Brandon Scott 2019-10-21 00:18:51 -05:00 committed by Andreas Kling
parent 443eda986a
commit a76b02f741
2 changed files with 13 additions and 3 deletions

View file

@ -31,7 +31,8 @@ private:
RefPtr<GAction> m_open_action;
RefPtr<GAction> m_save_action;
RefPtr<GAction> m_save_as_action;
RefPtr<GAction> m_goto_action;
RefPtr<GAction> m_goto_decimal_offset_action;
RefPtr<GAction> m_goto_hex_offset_action;
RefPtr<GStatusBar> m_statusbar;