WebPositive downloads: Handle large filenames by horizontal scrolling
Fixes #6622 Change-Id: I3cc993a2ba612a9440a49f6c2d65ea02074ad17a Reviewed-on: https://review.haiku-os.org/c/haiku/+/2946 Reviewed-by: Adrien Destugues <[email protected]> Tested-by: Commit checker robot <[email protected]>
This commit is contained in:
committed by
waddlesplash
parent
2ee8a1ac06
commit
ce90f34d28
@@ -60,8 +60,7 @@ public:
|
|||||||
|
|
||||||
virtual BSize MinSize()
|
virtual BSize MinSize()
|
||||||
{
|
{
|
||||||
BSize minSize = BGroupView::MinSize();
|
return BSize(B_SIZE_UNSET, 80);
|
||||||
return BSize(minSize.width, 80);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void Pulse()
|
virtual void Pulse()
|
||||||
@@ -91,7 +90,7 @@ class DownloadContainerScrollView : public BScrollView {
|
|||||||
public:
|
public:
|
||||||
DownloadContainerScrollView(BView* target)
|
DownloadContainerScrollView(BView* target)
|
||||||
:
|
:
|
||||||
BScrollView("Downloads scroll view", target, 0, false, true,
|
BScrollView("Downloads scroll view", target, 0, true, true,
|
||||||
B_NO_BORDER)
|
B_NO_BORDER)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user