summaryrefslogtreecommitdiffstats
path: root/macosx/HBPreviewView.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBPreviewView.m')
-rw-r--r--macosx/HBPreviewView.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/macosx/HBPreviewView.m b/macosx/HBPreviewView.m
index 3431a8a65..5a8140d5a 100644
--- a/macosx/HBPreviewView.m
+++ b/macosx/HBPreviewView.m
@@ -100,20 +100,20 @@
self.pictureLayer.hidden = hidden ;
self.backLayer.hidden = hidden || !self.showBorder;
- [self layout];
+ [self _updatePreviewLayout];
}
- (void)setFitToView:(BOOL)fitToView
{
_fitToView = fitToView;
- [self layout];
+ [self _updatePreviewLayout];
}
- (void)setShowBorder:(BOOL)showBorder
{
_showBorder = showBorder;
self.backLayer.hidden = !showBorder;
- [self layout];
+ [self _updatePreviewLayout];
}
- (void)setFrame:(NSRect)newRect {
@@ -125,7 +125,7 @@
[super setFrame:newRect];
}
- [self layout];
+ [self _updatePreviewLayout];
}
- (NSSize)scaledSize:(NSSize)source toFit:(NSSize)destination
@@ -154,7 +154,7 @@
/**
* Updates the sublayers layout.
*/
-- (void)layout
+- (void)_updatePreviewLayout
{
// Set the picture size display fields below the Preview Picture
NSSize imageSize = NSMakeSize(CGImageGetWidth(self.image), CGImageGetHeight(self.image));