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
908e06de
Commit
908e06de
authored
Oct 13, 2011
by
Moritz Lipp
Browse files
Fix sc_goto
parent
09d2ee09
Changes
1
Hide whitespace changes
Inline
Side-by-side
shortcuts.c
View file @
908e06de
...
...
@@ -114,19 +114,14 @@ sc_goto(girara_session_t* session, girara_argument_t* argument, unsigned int t)
g_return_val_if_fail
(
zathura
->
document
!=
NULL
,
false
);
if
(
argument
->
n
==
TOP
)
{
girara_argument_t
arg
=
{
TOP
,
NULL
};
sc_scroll
(
session
,
&
arg
,
0
);
return
false
;
page_set
(
zathura
,
0
);
}
else
{
if
(
t
==
0
)
{
girara_argument_t
arg
=
{
BOTTOM
,
NULL
};
sc_scroll
(
session
,
&
arg
,
0
);
page_set
(
zathura
,
zathura
->
document
->
number_of_pages
-
1
);
return
true
;
}
else
{
page_set
(
zathura
,
t
-
1
);
}
page_set
(
zathura
,
t
-
1
);
}
return
false
;
...
...
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