Oups. Layer::MoveBy/ResizeBy() escaped me. :-) The actions they used to perform are now executed only by RootLayer's thread.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10972 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -411,7 +411,7 @@ void WinBorder::MoveBy(float x, float y)
|
||||
if(fDecorator)
|
||||
fDecorator->MoveBy(x,y);
|
||||
|
||||
Layer::MoveBy(x,y);
|
||||
move_layer(x,y);
|
||||
}
|
||||
|
||||
//! Resizes the winborder with redraw
|
||||
@@ -423,7 +423,7 @@ void WinBorder::ResizeBy(float x, float y)
|
||||
if(fDecorator)
|
||||
fDecorator->ResizeBy(x,y);
|
||||
|
||||
Layer::ResizeBy(x,y);
|
||||
resize_layer(x,y);
|
||||
}
|
||||
|
||||
//! Returns true if hidden
|
||||
|
||||
Reference in New Issue
Block a user