Text editor: Fix typo in UI text: temporary > temporarily

Change-Id: I45c7cfb62556f5f3dead9d90e1fe911752ca72a7
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Leena Miettinen
2023-02-24 17:34:36 +01:00
parent 708c629133
commit be138dee10

View File

@@ -284,7 +284,7 @@ void TextMark::addToToolTipLayout(QGridLayout *target) const
const bool isHidden = TextDocument::marksAnnotationHidden(m_category.id);
visibilityAction->setIcon(Utils::Icons::EYE_OPEN_TOOLBAR.icon());
const QString tooltip = (isHidden ? Tr::tr("Show inline annotations for %1")
: Tr::tr("Temporary hide inline annotations for %1"))
: Tr::tr("Temporarily hide inline annotations for %1"))
.arg(m_category.displayName);
visibilityAction->setToolTip(tooltip);
auto callback = [id = m_category.id, isHidden] {