Skip to content

Commit c738bed

Browse files
committed
delete traces
1 parent fd95087 commit c738bed

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

GUI/EventsView.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,6 @@ drawEvents EventsView{drawArea, adj}
282282
Just win <- widgetGetWindow drawArea
283283
style <- widgetGetStyle drawArea
284284
focused <- widgetGetIsFocus drawArea
285-
traceM "got is focus"
286285
let state | focused = StateSelected
287286
| otherwise = StateActive
288287

GUI/Timeline.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,6 @@ timelineViewNew builder actions = do
281281

282282
on timelineDrawingArea draw $ do
283283
liftIO $ do
284-
traceM "timelineDrawingArea"
285284
maybeEventArray <- readIORef hecsIORef
286285

287286
-- Check to see if an event trace has been loaded

GUI/Timeline/Render.hs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ renderView TimelineState{timelineDrawingArea, timelineVAdj, timelinePrevView}
115115

116116
liftIO $ writeIORef timelinePrevView (Just (params, surface))
117117

118-
-- TODO: figure out what this did???
119118
C.rectangle rect
120119
clip
121120
setSourceSurface surface 0 (-vadj_value)
@@ -322,7 +321,6 @@ scrollView surface old new hecs = do
322321
-- and not only the newly exposed area. This is comparatively very cheap.
323322
updateXScaleArea :: TimelineState -> Timestamp -> IO ()
324323
updateXScaleArea TimelineState{..} lastTx = do
325-
traceM "updateXScaleArea"
326324
-- TODO: get rid of this Just
327325
Just win <- widgetGetWindow timelineXScaleArea
328326
Rectangle _ _ width _ <- widgetGetAllocation timelineDrawingArea
@@ -344,7 +342,6 @@ renderYScaleArea :: ViewParameters -> HECs -> DrawingArea -> Render ()
344342
renderYScaleArea ViewParameters{maxSpkValue, labelsMode, viewTraces,
345343
histogramHeight, minterval}
346344
hecs yScaleArea = do
347-
traceM "updateXScaleArea"
348345
let maxP = maxSparkPool hecs
349346
maxH = fromIntegral $ maxYHistogram hecs
350347
Rectangle _ _ xoffset _ <- liftIO $ widgetGetAllocation yScaleArea

0 commit comments

Comments
 (0)