diff --git a/src/apps/webpositive/DownloadWindow.cpp b/src/apps/webpositive/DownloadWindow.cpp index 28bec5fb5b..27f9c523f9 100644 --- a/src/apps/webpositive/DownloadWindow.cpp +++ b/src/apps/webpositive/DownloadWindow.cpp @@ -100,10 +100,13 @@ protected: { BScrollView::DoLayout(); // Tweak scroll bar layout to hide part of the frame for better looks. - BScrollBar* scrollBar = ScrollBar(B_VERTICAL); + BScrollBar* scrollBar = ScrollBar(B_HORIZONTAL); + scrollBar->MoveBy(-1, 1); + scrollBar->ResizeBy(2, 0); + scrollBar = ScrollBar(B_VERTICAL); scrollBar->MoveBy(1, -1); scrollBar->ResizeBy(0, 2); - Target()->ResizeBy(1, 0); + Target()->ResizeBy(1, 1); // Set the scroll steps if (BView* item = Target()->ChildAt(0)) { scrollBar->SetSteps(item->MinSize().height + 1,