diff --git a/Orange/widgets/utils/graphicstextlist.py b/Orange/widgets/utils/graphicstextlist.py index 357fc78590f..4fa52516987 100644 --- a/Orange/widgets/utils/graphicstextlist.py +++ b/Orange/widgets/utils/graphicstextlist.py @@ -237,7 +237,7 @@ def __layout(self) -> None: vspace = crect.height() - (N - 1) * spacing cell_height = vspace / N - if cell_height > fontheight and N > 1: + if cell_height > fontheight: # use font height, adjust (widen) spacing. cell_height = fontheight spacing = (crect.height() - N * cell_height) / N