You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Restore software brightness upon startup + some other tweaks. (MonitorControl#719)
- Software brightness changes are reapplied upon startup when 'Apply last saved values to the display' is selected under 'Upon startup or wake'.
- On some rare occasions, macOS does not reset gamma tables upon display reconfiguration which caused an erroneus baseline and double dimming in software and combined mode. Now there is a manual reset upon receiving a reconfiguration request as a safety measure to avoid this.
- Some minor tweaks regarding how software dimming and gamma table manipulation behaves.
- (also I fixed my name in About.)
NSWorkspace.shared.notificationCenter.addObserver(self, selector: #selector(self.sleepNotification), name:NSWorkspace.screensDidSleepNotification, object:nil) // sleep and wake listeners
if otherDisplay.getSwBrightness()!= savedPrefValue {
332
-
OSDUtils.popEmptyOsd(displayID: otherDisplay.identifier, command:Command.brightness) // This will give the user a hint why is the brightness suddenly changes and also give screen activity to counter the 'no gamma change when there is no screen activity' issue on some macs
334
+
OSDUtils.popEmptyOsd(displayID: otherDisplay.identifier, command:Command.brightness) // This will give the user a hint why is the brightness suddenly changes.
0 commit comments