1
0
Fork 0

(svn r18257) -Fix: glitch when the news message is wider than the status bar

release/1.0
rubidium 2009-11-23 16:23:42 +00:00
parent fabd1b7c50
commit 2a2884646c
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ struct NewsWindow : Window {
int diff = Delta(this->top, y);
this->top = y;
SetDirtyBlocks(this->left, this->top - diff, this->left + this->width, this->top + this->height);
SetDirtyBlocks(this->left, this->top, this->left + this->width, this->top + this->height + diff);
}
private: