diff --git a/uppsrc/CtrlLib/ColumnList.cpp b/uppsrc/CtrlLib/ColumnList.cpp index 16294773b..b891186a1 100644 --- a/uppsrc/CtrlLib/ColumnList.cpp +++ b/uppsrc/CtrlLib/ColumnList.cpp @@ -1053,7 +1053,7 @@ ColumnList::ColumnList() { clickkill = false; ncl = 1; cx = 50; - cy = Draw::GetStdFontCy(); + cy = max(DPI(18), Draw::GetStdFontCy()); cursor = -1; ListMode(); AddFrame(sb); diff --git a/uppsrc/CtrlLib/FileList.cpp b/uppsrc/CtrlLib/FileList.cpp index 7857b280a..5dc5ce090 100644 --- a/uppsrc/CtrlLib/FileList.cpp +++ b/uppsrc/CtrlLib/FileList.cpp @@ -370,7 +370,7 @@ void FileList::Sort(const Order& order) FileList::FileList() { iconwidth = Zx(16); - ItemHeight(max(Draw::GetStdFontCy(), 16)); + ItemHeight(max(Draw::GetStdFontCy(), DPI(18))); Ctrl::Add(edit); edit.Hide(); edit.SetFrame(BlackFrame());