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
d0bb3b89
Commit
d0bb3b89
authored
Aug 21, 2014
by
Sebastian Ramacher
Browse files
Test your commits before you push
Signed-off-by:
Sebastian Ramacher
<
sebastian+dev@ramacher.at
>
parent
9e1166c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
shortcuts.c
View file @
d0bb3b89
...
...
@@ -599,8 +599,8 @@ sc_scroll(girara_session_t* session, girara_argument_t* argument,
break
;
case
BIDIRECTIONAL
:
{
pos_x
+=
event
.
x
*
t
*
scroll_hstep
/
(
double
)
doc_width
;
pos_y
+=
event
.
y
*
t
*
scroll_step
/
(
double
)
doc_height
;
pos_x
+=
event
->
x
*
t
*
scroll_hstep
/
(
double
)
doc_width
;
pos_y
+=
event
->
y
*
t
*
scroll_step
/
(
double
)
doc_height
;
break
;
}
}
...
...
@@ -1382,7 +1382,7 @@ sc_zoom(girara_session_t* session, girara_argument_t* argument, girara_event_t*
zathura_document_set_scale
(
zathura
->
document
,
t
/
100
.
0
);
}
}
else
if
(
argument
->
n
==
ZOOM_SMOOTH
)
{
const
double
dy
=
event
.
y
;
const
double
dy
=
event
->
y
;
zathura_document_set_scale
(
zathura
->
document
,
old_zoom
+
zoom_step
*
dy
);
}
else
{
zathura_document_set_scale
(
zathura
->
document
,
1
.
0
);
...
...
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