This commit is contained in:
Vadim Lopatin 2016-03-28 17:52:30 +03:00
parent 8912be6208
commit 6b767acaa4
1 changed files with 2 additions and 1 deletions

View File

@ -1380,7 +1380,8 @@ class StringGridWidget : StringGridWidgetBase {
dstring txt = cellText(col, row);
Point sz = fnt.textSize(txt);
Align ha = Align.Left;
applyAlign(rc, sz, ha, Align.VCenter);
//if (sz.y < rc.height)
// applyAlign(rc, sz, ha, Align.VCenter);
fnt.drawText(buf, rc.left + 1, rc.top + 1, txt, textColor);
}