From e4f6d30d1cb9045810a909c1392049b51d6b985e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Fri, 11 Jul 2008 15:00:58 +0000 Subject: [PATCH] The scrollbar down-button was hidden behind the window resize handle in the Playlist window. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26381 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/mediaplayer/playlist/PlaylistWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/mediaplayer/playlist/PlaylistWindow.cpp b/src/apps/mediaplayer/playlist/PlaylistWindow.cpp index 410b80884c..a23dee7a03 100644 --- a/src/apps/mediaplayer/playlist/PlaylistWindow.cpp +++ b/src/apps/mediaplayer/playlist/PlaylistWindow.cpp @@ -71,7 +71,7 @@ PlaylistWindow::PlaylistWindow(BRect frame, Playlist* playlist, // make it so the frame of the menubar is also the frame of // the scroll bar (appears to be) scrollBar->MoveBy(0, -1); - scrollBar->ResizeBy(0, 1); + scrollBar->ResizeBy(0, -(B_H_SCROLL_BAR_HEIGHT - 2)); } fCommandStack->AddListener(&fCommandStackListener);