mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
HexEditor: Accept file drops
This commit is contained in:
parent
4eba921d48
commit
7f418a5c6a
Notes:
sideshowbarker
2024-07-19 17:26:05 +09:00
Author: https://github.com/krkk
Commit: 7f418a5c6a
Pull-request: https://github.com/SerenityOS/serenity/pull/8689
Reviewed-by: https://github.com/gunnarbeutner ✅
2 changed files with 15 additions and 0 deletions
|
@ -372,3 +372,16 @@ void HexEditorWidget::set_search_results_visible(bool visible)
|
|||
m_layout_search_results_action->set_checked(visible);
|
||||
m_search_results_container->set_visible(visible);
|
||||
}
|
||||
|
||||
void HexEditorWidget::drop_event(GUI::DropEvent& event)
|
||||
{
|
||||
event.accept();
|
||||
|
||||
if (event.mime_data().has_urls()) {
|
||||
auto urls = event.mime_data().urls();
|
||||
if (urls.is_empty())
|
||||
return;
|
||||
window()->move_to_front();
|
||||
open_file(urls.first().path());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue