Fixed tooltip not always showing

This commit is contained in:
nathan 2018-05-03 00:20:11 +02:00
parent efe4b2c966
commit c8149ab3ae

View File

@ -219,7 +219,7 @@ class _WindowsNativeTray extends Tray {
private
void setTooltip_(final String text) {
if (tooltipText != null && tooltipText.equals(text) || tooltipText == null && text != null) {
if (tooltipText != null && tooltipText.equals(text)) {
return;
}