* fix spacing between scope and vu views

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29226 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2009-02-15 19:43:38 +00:00
parent 4c0255d795
commit 8881ad6503

View File

@ -249,13 +249,13 @@ RecorderWindow::InitWindow()
r = background->Bounds(); r = background->Bounds();
r.left = 0; r.left = 0;
r.right = r.left + 35; r.right = r.left + 38;
r.bottom = r.top + 104; r.bottom = r.top + 104;
fVUView = new VUView(r, B_FOLLOW_LEFT|B_FOLLOW_TOP); fVUView = new VUView(r, B_FOLLOW_LEFT|B_FOLLOW_TOP);
background->AddChild(fVUView); background->AddChild(fVUView);
r = background->Bounds(); r = background->Bounds();
r.left = r.left + 38; r.left = r.left + 40;
r.bottom = r.top + 104; r.bottom = r.top + 104;
fScopeView = new ScopeView(r, B_FOLLOW_LEFT_RIGHT|B_FOLLOW_TOP); fScopeView = new ScopeView(r, B_FOLLOW_LEFT_RIGHT|B_FOLLOW_TOP);
background->AddChild(fScopeView); background->AddChild(fScopeView);