Summary: | Hidden scrollbar in collection browser | ||
---|---|---|---|
Product: | [Applications] amarok | Reporter: | Jakub Kowalski <iss> |
Component: | general | Assignee: | Amarok Developers <amarok-bugs-dist> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.4-beta1 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Jakub Kowalski
2006-02-13 21:32:01 UTC
Screenshot, please. http://img119.imageshack.us/img119/540/amarokscrollcombined7ei.png Left side -- scrollbar in not visible at all. Center -- collection window is just a bit wider than top toolbar and scrollbar starts to be visible. Right side -- window wider than before and scrollbar is fully visible. If button descriptions were shorter it' wouldn't happen. Maybe in other language versions toolbar width is smaller than fixed minimum width of collection browser window. Yes, I can reproduce this. SVN commit 516167 by aoliveira: Don't set Collection Browser minimum width to the toolbar width, as it old cause problems when the toolbar is too big. BUG: 121915 M +2 -1 collectionbrowser.cpp --- trunk/extragear/multimedia/amarok/src/collectionbrowser.cpp #516166:516167 @@ -289,7 +289,8 @@ m_configureAction->plug( m_toolbar ); - setMinimumWidth( m_toolbar->sizeHint().width() + 2 ); //set a reasonable minWidth + //This would break things if the toolbar is too big, see bug #121915 + //setMinimumWidth( m_toolbar->sizeHint().width() + 2 ); //set a reasonable minWidth } |