This commit is contained in:
parent
3542d7524a
commit
141ea4a027
1 changed files with 2 additions and 1 deletions
|
|
@ -92,6 +92,7 @@ void MwView::MessageReceived(BMessage* message) {
|
|||
this->Window()->ResizeTo(width - 1, height - 1);
|
||||
this->ResizeTo(width - 1, height - 1);
|
||||
}
|
||||
this->Draw(BRect(0, 0, 0, 0));
|
||||
break;
|
||||
}
|
||||
case BVIEW_MW_MOVE:
|
||||
|
|
@ -387,7 +388,7 @@ static int32 app_thread(void* data) {
|
|||
MwLL MwLLCreateImpl(MwLL parent, int x, int y, int width, int height) {
|
||||
MwLL r = (MwLL)malloc(sizeof(*r));
|
||||
MwRect mrc;
|
||||
BRect rc = BRect(x, y, x + width - 1, x + height - 1);
|
||||
BRect rc = BRect(x, y, x + width - 1, y + height - 1);
|
||||
|
||||
mrc.x = x;
|
||||
mrc.y = y;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue