IconDes: UHD issues, GLCtrl developing

git-svn-id: svn://ultimatepp.org/upp/trunk@12249 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2018-09-04 21:24:11 +00:00
parent 09953c47ae
commit 00a11f2c47
10 changed files with 56 additions and 18 deletions

View file

@ -1111,7 +1111,7 @@ void CodeEditor::Zoom(int d)
Font f = GetFont();
int h = f.GetCy();
int q = f.GetHeight();
while(f.GetCy() == h && (d < 0 ? f.GetCy() > 5 : f.GetCy() < 40))
while(f.GetCy() == h && (d < 0 ? f.GetCy() > 5 : f.GetCy() < 80))
f.Height(q += d);
SetFont(f);
EditorBarLayout();