Show short names when hovering the preview bar

This commit is contained in:
Ajay Ramachandran
2020-07-03 21:16:38 -04:00
parent 4fc7a69dd5
commit c69047c7f9
2 changed files with 8 additions and 2 deletions

View File

@@ -6,6 +6,8 @@
'use strict';
import Config from "../config";
import Utils from "../utils";
let utils = new Utils();
class PreviewBar {
container: HTMLUListElement;
@@ -79,8 +81,8 @@ class PreviewBar {
tooltipTextWrapper.classList.remove("sbTooltipOneTitleThumbnailOffset");
} else if (category !== null) {
categoryTooltip.classList.remove("sbHidden");
categoryTooltip.textContent = chrome.i18n.getMessage("category_" + category)
|| (chrome.i18n.getMessage("preview") + " " + chrome.i18n.getMessage("category_" + category.split("preview-")[1]));
categoryTooltip.textContent = utils.shortCategoryName(category)
|| (chrome.i18n.getMessage("preview") + " " + utils.shortCategoryName(category.split("preview-")[1]));
// There is a title now
tooltip.classList.remove("ytp-tooltip-text-no-title");