(svn r15907) -Fix (r15841): some strings in save/load dialog were drawn with a 2 pixel offset

pull/155/head
glx 15 years ago
parent 5f1d446b85
commit 13b6aaa425

@ -1588,7 +1588,7 @@ public:
for (uint pos = this->vscroll.pos; pos < _fios_items.Length(); pos++) {
const FiosItem *item = _fios_items.Get(pos);
DrawString(widg->left + 4, widg->right - 2, y, item->title, _fios_colours[item->type]);
DrawString(widg->left + 2, widg->right - 2, y, item->title, _fios_colours[item->type]);
y += 10;
if (y >= this->vscroll.cap * 10 + widg->top + 1) break;
}

Loading…
Cancel
Save