Fix Statistics RXChange hoverover glitch

This commit is contained in:
Mark Watkins 2014-05-16 09:21:27 +10:00
parent dd1cdd83fb
commit d09e64b800
3 changed files with 6056 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1155,7 +1155,7 @@ QString Statistics::GenerateHTML()
tooltiphide = "tooltip.hide();";
}
html += QString("<tr foo=1 bgcolor='%1' onmouseover='ChangeColor(this, \"#eeeeee\"); %2' onmouseout='ChangeColor(this, \"'%1\")); %3' onclick='alert(\"overview=%4,%5\");'>")
html += QString("<tr bgcolor='%1' onmouseover='ChangeColor(this, \"#eeeeee\"); %2' onmouseout='ChangeColor(this, \"%1\"); %3' onclick='alert(\"overview=%4,%5\");'>")
.arg(color)
.arg(tooltipshow)
.arg(tooltiphide)

View File

@ -40,6 +40,7 @@ void initTranslations(QSettings & settings) {
langNames["es"] = "Español";
langNames["bg"] = "български";
langNames["fr"] = "Français";
langNames["en_US"] = "English US";
// CHECK: Will the above break with MS VisualC++ compiler?
QHash<QString, QString> langFiles;