diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2017-06-06 20:46:05 +0100 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2017-06-06 20:46:05 +0100 |
commit | 29888f9f042e49a9b991ca2e6e790d808a3b74e9 (patch) | |
tree | 1b419b243cf9007a3cdf16a96c2ed405379b419e /src | |
parent | eb0b93b8e28f8b885f60d53f011357324a3a4d94 (diff) | |
download | imv-29888f9f042e49a9b991ca2e6e790d808a3b74e9.tar.gz |
Tweak default scaling mode
Diffstat (limited to 'src')
-rw-r--r-- | src/imv.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -43,8 +43,8 @@ enum scaling_mode { static const char *scaling_label[] = { "actual size", - "best fit", - "perfect fit" + "shrink to fit", + "scale to fit" }; enum background_type { @@ -110,7 +110,7 @@ struct imv *imv_create(void) imv->need_redraw = true; imv->need_rescale = true; imv->recursive_load = false; - imv->scaling_mode = SCALING_NONE; + imv->scaling_mode = SCALING_FULL; imv->cycle_input = true; imv->list_at_exit = false; imv->paths_from_stdin = false; |