1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 06:07:37 +02:00

fix chart defaults

This commit is contained in:
Leo Franchi
2011-10-27 21:55:29 -04:00
parent 2b682a14ae
commit 253d65d5a3
3 changed files with 15 additions and 12 deletions

View File

@@ -92,7 +92,7 @@ QSize
BreadcrumbButton::sizeHint() const
{
// our width = width of combo + 20px for right-arrow and spacing
const int padding = hasChildren() ? 20 : 5;
const int padding = hasChildren() ? 20 : 8;
return m_combo->sizeHint() + QSize( padding, 0 );
}