From 4a13af4977a03e11ad74fe2a1d9e0e7edee9ed28 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Tue, 11 Nov 2014 09:16:30 +0100 Subject: [PATCH] Terminal: set B_NO_BORDER on the tab view. This looks better and is what we want here. The difference is subtle, just a few pixels on the left and right side of the tabview where it now properly joins the window border. --- src/apps/terminal/SmartTabView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/apps/terminal/SmartTabView.cpp b/src/apps/terminal/SmartTabView.cpp index 23cc198b7c..b7aad69a3f 100644 --- a/src/apps/terminal/SmartTabView.cpp +++ b/src/apps/terminal/SmartTabView.cpp @@ -165,6 +165,8 @@ SmartTabView::AddTab(BView* target, BTab* tab) bar->MoveBy(0, 1); } } + + SetBorder(B_NO_BORDER); } Invalidate(TabFrame(CountTabs() - 1).InsetByCopy(-2, -2));