From 2717446306328230efa3519f782b6a1a959c7cc4 Mon Sep 17 00:00:00 2001 From: nowrep Date: Fri, 25 Mar 2011 19:33:00 +0100 Subject: [PATCH] Changed width of pinned panel. It looks allright for my gnome, this size is probably going to change to fit to Windows also --- src/webview/tabbar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webview/tabbar.cpp b/src/webview/tabbar.cpp index cda705b14..ee2141f4d 100644 --- a/src/webview/tabbar.cpp +++ b/src/webview/tabbar.cpp @@ -165,7 +165,7 @@ QSize TabBar::tabSizeHint(int index) const if (tabWidget) { WebTab* webTab = qobject_cast(tabWidget->widget(index)); if (webTab && webTab->isPinned()) - size.setWidth(35); + size.setWidth(31); } return size; }