UI: Tweak app info tooltip's style.

This commit is contained in:
Nodir Temirkhodjaev 2019-04-27 18:42:58 +05:00
parent f688aa6e96
commit f1ded0e582

View File

@ -17,10 +17,10 @@ ListViewControlTip {
if (hoveredItem) {
const appInfo = hoveredItem.appInfo;
if (appInfo.productName) {
text = "<b>" + appInfo.productName
text = appInfo.productName
+ " v" + appInfo.productVersion
+ "</b><br/><font color='darkblue'>"
+ appInfo.companyName + "</font>";
+ "<br/><font color='gray'>("
+ appInfo.companyName + ")</font>";
}
}
return text;