mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 22:23:47 +01:00
Set the horizontal scroll step
Previously it was set to -1, which was essentially disabling the horizontal scrolling. This enables the scrolling by default by setting it to be the same as the vertical scrolling. Signed-off-by: Ignas Anikevicius (gns_ank) <anikevicius@gmail.com> Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
815c51d066
commit
bb8bfc0dd3
2
config.c
2
config.c
@ -143,7 +143,7 @@ config_load_default(zathura_t* zathura)
|
||||
girara_setting_add(gsession, "first-page-column", &int_value, INT, false, _("Column of the first page"),cb_first_page_column_value_changed, NULL);
|
||||
float_value = 40;
|
||||
girara_setting_add(gsession, "scroll-step", &float_value, FLOAT, false, _("Scroll step"), NULL, NULL);
|
||||
float_value = -1;
|
||||
float_value = 40;
|
||||
girara_setting_add(gsession, "scroll-hstep", &float_value, FLOAT, false, _("Horizontal scroll step"), NULL, NULL);
|
||||
float_value = 0.0;
|
||||
girara_setting_add(gsession, "scroll-full-overlap", &float_value, FLOAT, false, _("Full page scroll overlap"), NULL, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user