diff options
author | Damiano Galassi <[email protected]> | 2016-07-16 12:02:27 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2016-07-16 12:02:27 +0200 |
commit | aca48f3c89ef65a6a5d06fe453c779964fe69a57 (patch) | |
tree | d89b26e5a4a0bea34a213145b86d5b08ab73adc5 /macosx/HBPictureHUDController.m | |
parent | 940771142e772bb737c7bd70f96d05c24206e39f (diff) |
MacGui: fix the label color of two text labels in the preview HUD on 10.9 and earlier.
Diffstat (limited to 'macosx/HBPictureHUDController.m')
-rw-r--r-- | macosx/HBPictureHUDController.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/macosx/HBPictureHUDController.m b/macosx/HBPictureHUDController.m index 741e6d008..86ccbe3e0 100644 --- a/macosx/HBPictureHUDController.m +++ b/macosx/HBPictureHUDController.m @@ -16,6 +16,9 @@ @property (weak) IBOutlet NSPopUpButton *durationPopUp; @property (weak) IBOutlet NSButton *scaleToScreenButton; +@property (weak) IBOutlet NSTextField *durationLabel; +@property (weak) IBOutlet NSTextField *durationUnitLabel; + @property (nonatomic) BOOL fitToView; @end @@ -35,6 +38,8 @@ { self.scaleLabel.textColor = [NSColor whiteColor]; self.infoLabel.textColor = [NSColor whiteColor]; + self.durationLabel.textColor = [NSColor whiteColor]; + self.durationUnitLabel.textColor = [NSColor whiteColor]; } // we set the preview length popup in seconds |