Clarify X11 error message printing

This simply ignores the error and moves on.
This commit is contained in:
Robbert van der Helm
2023-04-28 14:57:25 +02:00
parent cf48929058
commit b8a115f655
+2 -1
View File
@@ -748,7 +748,8 @@ void Editor::handle_x11_events() noexcept {
}
}
} catch (const std::runtime_error& error) {
std::cerr << error.what() << std::endl;
std::cerr << "Error occurred while handling X11 events, continuing: "
<< error.what() << std::endl;
}
}