From 76fcfb697e6fc6ec5a92e969992d66ea4fe10403 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Mon, 6 Jul 2020 21:52:47 -0400 Subject: [PATCH] Tracker: Remove extra space between pose controls and buttons. Now that the scrollbar is part of the pose area, we no longer have to include its height in the spacing of the pose view from the buttons and the bottom of the window. Mentioned by X512 in #16368. --- src/kits/tracker/FilePanelPriv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/tracker/FilePanelPriv.cpp b/src/kits/tracker/FilePanelPriv.cpp index d37ab43cba..e905781e6e 100644 --- a/src/kits/tracker/FilePanelPriv.cpp +++ b/src/kits/tracker/FilePanelPriv.cpp @@ -749,7 +749,7 @@ TFilePanel::Init(const BMessage*) rect = windRect; rect.OffsetTo(10, fDirMenuField->Frame().bottom + 10); - rect.bottom = windRect.bottom - 60; + rect.bottom = windRect.bottom - 46; rect.right -= 20; fPoseContainer->MoveTo(rect.LeftTop()); fPoseContainer->ResizeTo(rect.Width(), rect.Height());