mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 23:13:48 +01:00
Merge branch 'develop' of pwmt.org:zathura into develop
This commit is contained in:
commit
fea48f3438
2
config.c
2
config.c
@ -132,6 +132,8 @@ config_load_default(zathura_t* zathura)
|
||||
girara_shortcut_add(gsession, 0, 0, "zO", sc_zoom, FULLSCREEN, ZOOM_OUT, NULL);
|
||||
girara_shortcut_add(gsession, 0, 0, "z0", sc_zoom, NORMAL, ZOOM_ORIGINAL, NULL);
|
||||
girara_shortcut_add(gsession, 0, 0, "z0", sc_zoom, FULLSCREEN, ZOOM_ORIGINAL, NULL);
|
||||
girara_shortcut_add(gsession, 0, GDK_equal, NULL, sc_zoom, NORMAL, ZOOM_SPECIFIC, NULL);
|
||||
girara_shortcut_add(gsession, 0, GDK_equal, NULL, sc_zoom, FULLSCREEN, ZOOM_SPECIFIC, NULL);
|
||||
|
||||
/* mouse events */
|
||||
girara_mouse_event_add(gsession, 0, 0, sc_mouse_scroll, NORMAL, 0, NULL);
|
||||
|
13
shortcuts.c
13
shortcuts.c
@ -727,7 +727,7 @@ sc_quit(girara_session_t* session, girara_argument_t* UNUSED(argument),
|
||||
|
||||
bool
|
||||
sc_zoom(girara_session_t* session, girara_argument_t* argument, girara_event_t*
|
||||
UNUSED(event), unsigned int UNUSED(t))
|
||||
UNUSED(event), unsigned int t)
|
||||
{
|
||||
g_return_val_if_fail(session != NULL, false);
|
||||
g_return_val_if_fail(session->global.data != NULL, false);
|
||||
@ -741,14 +741,25 @@ sc_zoom(girara_session_t* session, girara_argument_t* argument, girara_event_t*
|
||||
|
||||
float zoom_step = value / 100.0f;
|
||||
|
||||
/* specify new zoom value */
|
||||
if (argument->n == ZOOM_IN) {
|
||||
zathura->document->scale += zoom_step;
|
||||
} else if (argument->n == ZOOM_OUT) {
|
||||
zathura->document->scale -= zoom_step;
|
||||
} else if (argument->n == ZOOM_SPECIFIC) {
|
||||
fprintf(stderr, "t: %d\n", t);
|
||||
zathura->document->scale = t / 100.0f;
|
||||
} else {
|
||||
zathura->document->scale = 1.0;
|
||||
}
|
||||
|
||||
/* zoom limitations */
|
||||
if (zathura->document->scale < 0.1f) {
|
||||
zathura->document->scale = 0.1f;
|
||||
} else if (zathura->document->scale > 10.0f) {
|
||||
zathura->document->scale = 10.0f;
|
||||
}
|
||||
|
||||
render_all(zathura);
|
||||
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user