mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 16:18:12 +00:00
PDFViewer: Simplify user-facing error messages
We now show a simple, if less helpful, message to the user and print the verbose error message to serial instead.
This commit is contained in:
parent
e782d03f96
commit
9b1331a984
2 changed files with 4 additions and 2 deletions
|
@ -176,7 +176,8 @@ void PDFViewerWidget::open_file(Core::File& file)
|
|||
auto handle_error = [&]<typename T>(PDF::PDFErrorOr<T> maybe_error) {
|
||||
if (maybe_error.is_error()) {
|
||||
auto error = maybe_error.release_error();
|
||||
GUI::MessageBox::show_error(nullptr, String::formatted("Couldn't load PDF {}:\n{}", file.filename(), error.message()));
|
||||
warnln("{}", error.message());
|
||||
GUI::MessageBox::show_error(nullptr, "Failed to load the document."sv);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue