mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-28 08:25:59 +01:00
Print a warning if loading plugins failed.
This commit is contained in:
parent
d9152a03fa
commit
1ae4eda5b2
1 changed files with 3 additions and 1 deletions
|
@ -824,7 +824,9 @@ document_open(zathura_t* zathura, const char* path, const char* password,
|
|||
|
||||
|
||||
/* bookmarks */
|
||||
zathura_bookmarks_load(zathura, file_path);
|
||||
if (zathura_bookmarks_load(zathura, file_path) == false) {
|
||||
girara_warning("Failed to loads bookmarks.");
|
||||
}
|
||||
|
||||
/* jumplist */
|
||||
if (zathura_jumplist_load(zathura, file_path) == false) {
|
||||
|
|
Loading…
Reference in a new issue