🍎🐛 make displaying alternate tray image depend on mouse down event instead of highlight state

This commit is contained in:
leethomas 2016-01-05 09:47:19 -08:00
parent 5f0be5636a
commit 59eda67ba4

View file

@ -92,7 +92,7 @@ const CGFloat kVerticalTitleMargin = 2;
// Make use of NSImageView to draw the image, which can correctly draw
// template image under dark menu bar.
if (highlight && alternateImage_ &&
if (inMouseEventSequence_ && alternateImage_ &&
[image_view_ image] != alternateImage_.get()) {
[image_view_ setImage:alternateImage_];
} else if ([image_view_ image] != image_.get()) {