diff options
author | Max <post@wickenrode.com> | 2015-10-17 02:04:49 +0200 |
---|---|---|
committer | Max <post@wickenrode.com> | 2015-10-17 02:10:13 +0200 |
commit | bc61f825d02eac931b0bbfdebacc4ccb320a9237 (patch) | |
tree | 6330ce3bed89a4b8b684ad1cbd66d7f80c63564b /Source | |
parent | 85818e2b5ec0006e1fa03a3e7c65541a4666b9b3 (diff) | |
download | sequelpro-bc61f825d02eac931b0bbfdebacc4ccb320a9237.tar.gz sequelpro-bc61f825d02eac931b0bbfdebacc4ccb320a9237.tar.bz2 sequelpro-bc61f825d02eac931b0bbfdebacc4ccb320a9237.zip |
Very likely a fix for the _scrollViewDidChangeBounds debacle (#2126)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPTableView.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/SPTableView.m b/Source/SPTableView.m index 72535038..a73b083d 100644 --- a/Source/SPTableView.m +++ b/Source/SPTableView.m @@ -88,6 +88,8 @@ [notifier addObserver:self selector:@selector(_disableDoubleClickAction:) name:NSWindowWillBeginSheetNotification object:aWindow]; [notifier addObserver:self selector:@selector(_enableDoubleClickAction:) name:NSWindowDidEndSheetNotification object:aWindow]; } + + [super viewWillMoveToWindow:aWindow]; } /** |