* Turned on widget outline by default.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34443 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2009-12-02 11:49:06 +00:00
parent a8af8078a4
commit 862508e775

View File

@ -37,13 +37,14 @@ All rights reserved.
// //
// Used by the Desktop window and by the root view in file panels // Used by the Desktop window and by the root view in file panels
#include "DesktopPoseView.h"
#include <NodeMonitor.h> #include <NodeMonitor.h>
#include <Path.h> #include <Path.h>
#include <VolumeRoster.h>
#include <Volume.h> #include <Volume.h>
#include <VolumeRoster.h>
#include "Commands.h" #include "Commands.h"
#include "DesktopPoseView.h"
#include "FSUtils.h" #include "FSUtils.h"
#include "PoseList.h" #include "PoseList.h"
#include "Tracker.h" #include "Tracker.h"
@ -82,9 +83,9 @@ DesktopEntryListCollection::DesktopEntryListCollection()
DesktopPoseView::DesktopPoseView(Model *model, BRect frame, uint32 viewMode, DesktopPoseView::DesktopPoseView(Model *model, BRect frame, uint32 viewMode,
uint32 resizeMask) uint32 resizeMask)
: BPoseView(model, frame, viewMode, resizeMask) :
BPoseView(model, frame, viewMode, resizeMask)
{ {
SetWidgetTextOutline(true);
SetFlags(Flags() | B_DRAW_ON_CHILDREN); SetFlags(Flags() | B_DRAW_ON_CHILDREN);
} }