Fix out of date scaling command defaults

This commit is contained in:
Harry Jeffery 2019-08-23 23:02:27 +01:00
parent cf706293db
commit 9850d9c6a2
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ f = fullscreen
d = overlay d = overlay
p = exec echo $imv_current_file p = exec echo $imv_current_file
c = center c = center
s = scaling_mode next s = scaling next
a = zoom actual a = zoom actual
r = reset r = reset

View file

@ -576,7 +576,7 @@ struct imv *imv_create(void)
add_bind(imv, "<minus>", "zoom -1"); add_bind(imv, "<minus>", "zoom -1");
add_bind(imv, "o", "zoom -1"); add_bind(imv, "o", "zoom -1");
add_bind(imv, "c", "center"); add_bind(imv, "c", "center");
add_bind(imv, "s", "scaling_mode next"); add_bind(imv, "s", "scaling next");
add_bind(imv, "a", "zoom actual"); add_bind(imv, "a", "zoom actual");
add_bind(imv, "r", "reset"); add_bind(imv, "r", "reset");
add_bind(imv, "<period>", "next_frame"); add_bind(imv, "<period>", "next_frame");