From d9aecc8e08d4ac2cd69b481a7772ac72c62b4689 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 6 Aug 2020 14:27:06 +0200 Subject: Shell: Remove unnecessary ignore() in Shell::custom_event() Ignoring an event means that it will bubble to the parent Core::Object. This is not necessary here. --- Shell/Shell.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'Shell/Shell.cpp') diff --git a/Shell/Shell.cpp b/Shell/Shell.cpp index ddfad4d600..debfcded94 100644 --- a/Shell/Shell.cpp +++ b/Shell/Shell.cpp @@ -1077,8 +1077,6 @@ void Shell::custom_event(Core::CustomEvent& event) Core::EventLoop::current().post_event(*this, make(ShellEventType::ReadLine)); return; } - - event.ignore(); } Shell::Shell() -- cgit v1.2.3