Skip to content
This repository has been archived by the owner on Oct 12, 2018. It is now read-only.

Commit

Permalink
HWMonitor: Fan control disabled on Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
CozmoNate committed Jul 10, 2015
1 parent 6cddbee commit e8a4ead
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions HWMonitor/PopupFanCell.m
Expand Up @@ -58,6 +58,11 @@ - (void)updateTrackingAreas

-(void)mouseEntered:(NSEvent *)theEvent
{
// Don't control fans on Macs
if ([[HWMEngine sharedEngine] isRunningOnMac]) {
return;
}

HWMSmcFanSensor *fan = self.objectValue;

if (fan.controller) {
Expand Down

0 comments on commit e8a4ead

Please sign in to comment.