summaryrefslogtreecommitdiff
path: root/cocoa/HistoryView.m
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/HistoryView.m')
-rw-r--r--cocoa/HistoryView.m7
1 files changed, 6 insertions, 1 deletions
diff --git a/cocoa/HistoryView.m b/cocoa/HistoryView.m
index 65f971d28..a68418416 100644
--- a/cocoa/HistoryView.m
+++ b/cocoa/HistoryView.m
@@ -56,10 +56,15 @@
{
[[NSColor clearColor] set];
[NSBezierPath fillRect: rect];
+
+ struct redraw_context ctx = {
+ .interactive = true,
+ .plot = &cocoa_plotters
+ };
cocoa_set_clip( rect );
- history_redraw( browser->history );
+ history_redraw( browser->history, &ctx );
}
- (void) mouseUp: (NSEvent *)theEvent;