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:
@@ -1073,9 +1073,9 @@ void FileBrowser::saveThumbnailHeight (int height) {
|
|||||||
int FileBrowser::getThumbnailHeight () {
|
int FileBrowser::getThumbnailHeight () {
|
||||||
// The user could have manually forced the option to a too big value
|
// The user could have manually forced the option to a too big value
|
||||||
if (!options.sameThumbSize && inTabMode)
|
if (!options.sameThumbSize && inTabMode)
|
||||||
return std::max(std::min(options.thumbSizeTab, 200), 10);
|
return std::max(std::min(options.thumbSizeTab, 800), 10);
|
||||||
else
|
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) {
|
void FileBrowser::applyMenuItemActivated (Glib::ustring ppname) {
|
||||||
|
Reference in New Issue
Block a user