Skip to content
This repository was archived by the owner on Aug 2, 2023. It is now read-only.

Commit 03996d3

Browse files
authored
Merge pull request #148 from bitstadium/fix/feedback-ui-dark-mode
Fixed feedback window for macOS Mojave Dark mode.
2 parents d2eaac1 + 6a5dd60 commit 03996d3

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

Classes/Feedback/BITFeedbackWindowController.m

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,10 @@ - (void)awakeFromNib {
111111
appIcon = [self imageWithReducedAlpha:0.5 fromImage:appIcon];
112112
[self.feedbackEmptyAppImageView setImage:appIcon];
113113

114-
[self.feedbackListBackgroundView setViewBackgroundColor:[NSColor colorWithCalibratedRed:0.91 green:0.92 blue:0.93 alpha:1.0]];
115-
[self.feedbackComposeBackgroundView setViewBackgroundColor:[NSColor whiteColor]];
116-
[self.horizontalLine setViewBackgroundColor:[NSColor colorWithCalibratedRed:0.79 green:0.82 blue:0.83 alpha:1.0]];
117-
[self.statusBar setViewBackgroundColor:[NSColor whiteColor]];
118-
[self.mainBackgroundView setViewBackgroundColor:[NSColor colorWithCalibratedRed:0.91 green:0.92 blue:0.93 alpha:1.0]];
119-
[self.userDataBoxView setViewBackgroundColor:[NSColor colorWithCalibratedRed:0.88 green:0.89 blue:0.90 alpha:1.0]];
120114
[self.userDataBoxView setViewBorderWidth:1.0];
121-
[self.userDataBoxView setViewBorderColor:[NSColor colorWithCalibratedRed:0.82 green:0.85 blue:0.86 alpha:1.0]];
122-
115+
[self.feedbackComposeBackgroundView setViewBackgroundColor:[NSColor whiteColor]];
116+
[self.messageTextField setBackgroundColor:[NSColor whiteColor]];
117+
123118
[[NSNotificationCenter defaultCenter] addObserver:self
124119
selector:@selector(tableViewFrameChanged:)
125120
name:NSViewFrameDidChangeNotification

0 commit comments

Comments
 (0)