summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
Diffstat (limited to 'macosx')
-rw-r--r--macosx/PictureController.mm11
1 files changed, 9 insertions, 2 deletions
diff --git a/macosx/PictureController.mm b/macosx/PictureController.mm
index 940bdb2fe..6888e55f3 100644
--- a/macosx/PictureController.mm
+++ b/macosx/PictureController.mm
@@ -262,6 +262,7 @@ are maintained across different sources */
scale * 100.0];
[fInfoField setStringValue: [[fInfoField stringValue] stringByAppendingString:scaleString]];
}
+
}
- (IBAction) previewDurationPopUpChanged: (id) sender
@@ -463,7 +464,8 @@ are maintained across different sources */
no human can see any meaningful detail below that */
if (job->width >= 64 && job->height >= 64)
{
- // Purge the existing picture previews so they get recreated the next time
+
+ // Purge the existing picture previews so they get recreated the next time
// they are needed.
[self purgeImageCache];
/* We actually call displayPreview now from pictureSliderChanged which keeps
@@ -473,7 +475,12 @@ are maintained across different sources */
[self pictureSliderChanged:nil];
}
-
+
+ if (sender != nil)
+ {
+ if ([delegate respondsToSelector:@selector(pictureSettingsDidChange)])
+ [delegate pictureSettingsDidChange];
+ }
}