remove tray.setHighlightMode() deprecation

This commit is contained in:
Shelley Vohr 2018-05-23 09:20:39 -07:00
parent 72c63a10ee
commit 003a5a0160
No known key found for this signature in database
GPG key ID: F13993A75599653C
3 changed files with 0 additions and 38 deletions

View file

@ -40,16 +40,6 @@ struct Converter<atom::TrayIcon::HighlightMode> {
return true;
}
}
bool highlight;
if (ConvertFromV8(isolate, val, &highlight)) {
if (highlight)
*out = atom::TrayIcon::HighlightMode::SELECTION;
else
*out = atom::TrayIcon::HighlightMode::NEVER;
return true;
}
return false;
}
};