LibGUI+WindowServer: Remove InputPreemptor concept

This functionality will be superceded by WindowType:Popups
This commit is contained in:
thankyouverycool 2022-11-17 09:06:41 -05:00 committed by Andreas Kling
commit 3027cf7e99
Notes: sideshowbarker 2024-07-17 18:08:55 +09:00
13 changed files with 0 additions and 53 deletions

View file

@ -144,11 +144,6 @@ EmojiInputDialog::EmojiInputDialog(Window* parent_window)
close();
};
on_input_preemption = [this](InputPreemptor preemptor) {
if (preemptor != InputPreemptor::ContextMenu)
close();
};
m_search_box->on_change = [this]() {
update_displayed_emoji();
};