Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pwmt
zathura
Commits
fd07d3f5
Commit
fd07d3f5
authored
Mar 14, 2013
by
Sebastian Ramacher
Browse files
Merge branch 'develop' of pwmt.org:zathura into develop
parents
b5dbe9ff
42cae85f
Changes
1
Hide whitespace changes
Inline
Side-by-side
zathura.c
View file @
fd07d3f5
...
...
@@ -503,6 +503,7 @@ document_open(zathura_t* zathura, const char* path, const char* password)
goto
error_out
;
}
gchar
*
file_uri
=
NULL
;
zathura_error_t
error
=
ZATHURA_ERROR_OK
;
zathura_document_t
*
document
=
zathura_document_open
(
zathura
->
plugins
.
manager
,
path
,
password
,
&
error
);
...
...
@@ -529,6 +530,12 @@ document_open(zathura_t* zathura, const char* path, const char* password)
const
char
*
file_path
=
zathura_document_get_path
(
document
);
unsigned
int
number_of_pages
=
zathura_document_get_number_of_pages
(
document
);
if
(
number_of_pages
==
0
)
{
girara_notify
(
zathura
->
ui
.
session
,
GIRARA_WARNING
,
_
(
"Document does not contain any pages"
));
goto
error_free
;
}
/* read history file */
zathura_fileinfo_t
file_info
=
{
0
,
0
,
1
,
0
,
0
,
0
,
0
,
0
};
bool
known_file
=
zathura_db_get_fileinfo
(
zathura
->
database
,
file_path
,
&
file_info
);
...
...
@@ -594,7 +601,7 @@ document_open(zathura_t* zathura, const char* path, const char* password)
}
/* install file monitor */
gchar
*
file_uri
=
g_filename_to_uri
(
file_path
,
NULL
,
NULL
);
file_uri
=
g_filename_to_uri
(
file_path
,
NULL
,
NULL
);
if
(
file_uri
==
NULL
)
{
goto
error_free
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment