From 6ae0dd01669f9c1e210facf668dc4da4c6b41662 Mon Sep 17 00:00:00 2001 From: natureh 510 Date: Sun, 14 Jul 2013 03:08:01 +0200 Subject: [PATCH] Solving issue 1924: "Thumbnails size can't be increased in RT 4.0.11.16 (Linux)", on behalf of Adam --- rtgui/filebrowser.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtgui/filebrowser.cc b/rtgui/filebrowser.cc index 9864279f1..8899fb4dc 100644 --- a/rtgui/filebrowser.cc +++ b/rtgui/filebrowser.cc @@ -1073,9 +1073,9 @@ void FileBrowser::saveThumbnailHeight (int height) { int FileBrowser::getThumbnailHeight () { // The user could have manually forced the option to a too big value if (!options.sameThumbSize && inTabMode) - return std::max(std::min(options.thumbSizeTab, 200), 10); + return std::max(std::min(options.thumbSizeTab, 800), 10); else - return std::max(std::min(options.thumbSize, 200), 10); + return std::max(std::min(options.thumbSize, 800), 10); } void FileBrowser::applyMenuItemActivated (Glib::ustring ppname) {