diff options
author | Nina Pypchenko <22447785+nina-py@users.noreply.github.com> | 2021-01-10 19:14:49 +1100 |
---|---|---|
committer | npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com> | 2021-01-14 17:36:17 +0000 |
commit | c14638877c0bb0533a72842ccc7c73d88f5122f0 (patch) | |
tree | bac7b25321ce61e30b578f51a9692ff52955edc8 /apps/files/templates/appnavigation.php | |
parent | 97743df3fcd6243f9b2755a4c86586b61a96e793 (diff) | |
download | nextcloud-server-c14638877c0bb0533a72842ccc7c73d88f5122f0.tar.gz nextcloud-server-c14638877c0bb0533a72842ccc7c73d88f5122f0.zip |
Add "Crop image previews" setting to files
Added a new user setting that toggles cropping on image previews
in grid view.
True (default value): crops each image to a square. False: keep original
aspect ratio.
Signed-off-by: Nina Pypchenko <22447785+nina-py@users.noreply.github.com>
Closes #18439.
Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/files/templates/appnavigation.php')
-rw-r--r-- | apps/files/templates/appnavigation.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/files/templates/appnavigation.php b/apps/files/templates/appnavigation.php index f57295e8887..8e654567946 100644 --- a/apps/files/templates/appnavigation.php +++ b/apps/files/templates/appnavigation.php @@ -44,6 +44,11 @@ script(\OCA\Files\AppInfo\Application::APP_ID, 'dist/files-app-settings'); checked="checked" type="checkbox"> <label for="showhiddenfilesToggle"><?php p($l->t('Show hidden files')); ?></label> </div> + <div id="files-setting-cropimagepreviews"> + <input class="checkbox" id="cropimagepreviewsToggle" + checked="checked" type="checkbox"> + <label for="cropimagepreviewsToggle"><?php p($l->t('Crop image previews')); ?></label> + </div> <label for="webdavurl"><?php p($l->t('WebDAV')); ?></label> <input id="webdavurl" type="text" readonly="readonly" value="<?php p($_['webdav_url']); ?>"/> |