1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:57:44 +00:00

HexEditor: Add 'Find All' option to Find Dialog to find all matches

This commit is contained in:
Brendan Coles 2021-05-27 15:51:21 +00:00 committed by Andreas Kling
parent d7797c8bf8
commit 6aa766f8ca
9 changed files with 238 additions and 30 deletions

View file

@ -14,8 +14,22 @@
}
}
@HexEditor::HexEditor {
name: "editor"
@GUI::HorizontalSplitter {
@HexEditor::HexEditor {
name: "editor"
}
@GUI::Widget {
name: "search_results_container"
visible: false
layout: @GUI::VerticalBoxLayout {
}
@GUI::TableView {
name: "search_results"
}
}
}
@GUI::Statusbar {