Solving issue 1924: "Thumbnails size can't be increased in RT 4.0.11.16 (Linux)", on behalf of Adam

This commit is contained in:
natureh 510
2013-07-14 03:08:01 +02:00
parent 5cdfcb8656
commit 6ae0dd0166

View File

@@ -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) {