summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--frontends/cocoa/ScrollableView.m5
1 files changed, 4 insertions, 1 deletions
diff --git a/frontends/cocoa/ScrollableView.m b/frontends/cocoa/ScrollableView.m
index c495b1d93..130fce201 100644
--- a/frontends/cocoa/ScrollableView.m
+++ b/frontends/cocoa/ScrollableView.m
@@ -45,7 +45,10 @@
- (void)frameChangeNotification:(NSNotification *)note
{
- [self adjustFrame];
+ // TODO: Correctly handle window resizing.
+ // Removing this call is a quick hack to avoid an endless layout loop due to appearing/disappearing
+ // scroll bars.
+ //[self adjustFrame];
}
- (void)viewDidMoveToSuperview