Fix reverse condition. This would lead to the view getting Pulse messages both from it's own MessageRunner and from BWindow.
No functional change intended :) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42517 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -40,7 +40,7 @@ enum {
|
|||||||
|
|
||||||
PeakView::PeakView(const char* name, bool useGlobalPulse, bool displayLabels)
|
PeakView::PeakView(const char* name, bool useGlobalPulse, bool displayLabels)
|
||||||
:
|
:
|
||||||
BView(name, (useGlobalPulse ? 0 : B_PULSE_NEEDED)
|
BView(name, (useGlobalPulse ? B_PULSE_NEEDED : 0)
|
||||||
| B_WILL_DRAW | B_FRAME_EVENTS | B_FULL_UPDATE_ON_RESIZE),
|
| B_WILL_DRAW | B_FRAME_EVENTS | B_FULL_UPDATE_ON_RESIZE),
|
||||||
fUseGlobalPulse(useGlobalPulse),
|
fUseGlobalPulse(useGlobalPulse),
|
||||||
fDisplayLabels(displayLabels),
|
fDisplayLabels(displayLabels),
|
||||||
|
|||||||
Reference in New Issue
Block a user