HexEditor: Offset segment in status bar opens goto offset dialog

This commit is contained in:
Samu698 2022-03-13 18:41:47 +01:00 committed by Andreas Kling
parent a562518ad7
commit d694af8be0
Notes: sideshowbarker 2024-07-19 17:07:17 +09:00

View File

@ -190,6 +190,9 @@ HexEditorWidget::HexEditorWidget()
m_toolbar->add_action(*m_find_action);
m_toolbar->add_action(*m_goto_offset_action);
m_statusbar->segment(0).set_clickable(true);
m_statusbar->segment(0).set_action(*m_goto_offset_action);
m_editor->set_focus(true);
}