summaryrefslogtreecommitdiff
path: root/cocoa/BrowserView.m
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/BrowserView.m')
-rw-r--r--cocoa/BrowserView.m7
1 files changed, 6 insertions, 1 deletions
diff --git a/cocoa/BrowserView.m b/cocoa/BrowserView.m
index 131499d2c..990f42732 100644
--- a/cocoa/BrowserView.m
+++ b/cocoa/BrowserView.m
@@ -76,6 +76,11 @@ static NSMutableArray *cocoa_reformat_pending = nil;
}
}
+- (void) updateHistory;
+{
+ [history redraw];
+}
+
static inline NSRect cocoa_get_caret_rect( BrowserView *view )
{
NSRect caretRect = {
@@ -413,7 +418,7 @@ static browser_mouse_state cocoa_mouse_flags_for_event( NSEvent *evt )
historyVisible = newVisible;
if (historyVisible) {
- if (nil == history) history = [[LocalHistoryController alloc] initWithBrowser: browser];
+ if (nil == history) history = [[LocalHistoryController alloc] initWithBrowser: self];
[history attachToView: [(BrowserWindowController *)[[self window] windowController] historyButton]];
} else {
[history detach];