# HG changeset patch # User Tomasz Golinski # Date 1505589142 -3600 # Node ID 93d065140133d149e36455299be67726914f599e # Parent b8f3f29bd641993200bb0b486f6e6a61d72c65b7 Bug fix: Marks checkboxes in iconview The width of the marks checkboxes was not taken into account in icon view mode diff -r b8f3f29bd641 -r 93d065140133 src/view_file/view_file_icon.c --- a/src/view_file/view_file_icon.c Thu Sep 14 10:38:09 2017 +0100 +++ b/src/view_file/view_file_icon.c Sat Sep 16 20:12:22 2017 +0100 @@ -191,7 +191,7 @@ { gint width; - if (!VFICON(vf)->show_text) return options->thumbnails.max_width; + if (!VFICON(vf)->show_text && !vf->marks_enabled ) return options->thumbnails.max_width; width = options->thumbnails.max_width + options->thumbnails.max_width / 2; if (width < THUMB_MIN_ICON_WIDTH) width = THUMB_MIN_ICON_WIDTH;