diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-03-21 12:12:36 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-03-21 12:12:36 +0100 |
commit | 5a8bb470bc30bf6a360661a87af783fd30588f5f (patch) | |
tree | ceb8b0a5ed056c77ecc2ea00d7778cb2b19aa50c /src/tabbar.cpp | |
parent | Fixed tabs dimension && reduced tabbar font (diff) | |
download | rekonq-5a8bb470bc30bf6a360661a87af783fd30588f5f.tar.xz |
Always Show Tab Bar. Or not...
Diffstat (limited to 'src/tabbar.cpp')
-rw-r--r-- | src/tabbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabbar.cpp b/src/tabbar.cpp index ac18d7e8..0b8bdf63 100644 --- a/src/tabbar.cpp +++ b/src/tabbar.cpp @@ -66,7 +66,7 @@ QSize TabBar::tabSizeHint (int index) const { Q_UNUSED(index); QSize s = m_parent->sizeHint(); - int w = s.width() / 5; + int w = s.width() / 4; int h = s.height() / 20; QSize ts = QSize(w,h); |