Fixed a mixup of the flags and resize mode arguments. In my previous commit,
I wrongly assumed that viewMode == view flags. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29778 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -80,11 +80,12 @@ DesktopEntryListCollection::DesktopEntryListCollection()
|
|||||||
// #pragma mark -
|
// #pragma mark -
|
||||||
|
|
||||||
|
|
||||||
DesktopPoseView::DesktopPoseView(Model *model, BRect frame, uint32 resizeMask,
|
DesktopPoseView::DesktopPoseView(Model *model, BRect frame, uint32 viewMode,
|
||||||
uint32 flags)
|
uint32 resizeMask)
|
||||||
: BPoseView(model, frame, resizeMask, flags | B_DRAW_ON_CHILDREN)
|
: BPoseView(model, frame, viewMode, resizeMask)
|
||||||
{
|
{
|
||||||
SetWidgetTextOutline(true);
|
SetWidgetTextOutline(true);
|
||||||
|
SetFlags(Flags() | B_DRAW_ON_CHILDREN);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user