mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix(capslockindicator): Tooltip color was changed. Tooltip translation was added
This commit is contained in:
parent
af497a9efd
commit
bbe158c7d9
|
@ -13,14 +13,14 @@ CapsLockIndicator::CapsLockIndicator(QWidget *parent) : QToolButton(parent) {
|
||||||
setIconSize(iconSize);
|
setIconSize(iconSize);
|
||||||
setCursor(Qt::ArrowCursor);
|
setCursor(Qt::ArrowCursor);
|
||||||
move(inputSize.width() - inputSize.height(), 0);
|
move(inputSize.width() - inputSize.height(), 0);
|
||||||
setStyleSheet("border: none; padding: 0;");
|
setStyleSheet("border: none; padding: 0; color: white");
|
||||||
setToolTip("CAPS-LOCK ENABLED");
|
setToolTip(tr("CAPS-LOCK ENABLED"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void CapsLockIndicator::show() {
|
void CapsLockIndicator::show() {
|
||||||
QToolButton::show();
|
QToolButton::show();
|
||||||
|
|
||||||
QString style = QString("padding: -3px %1px -3px -6px").arg(iconSize().width() - 3);
|
QString style = QString("padding: -3px %1px -3px -6px; color: white").arg(iconSize().width() - 3);
|
||||||
parentWidget()->setStyleSheet(style);
|
parentWidget()->setStyleSheet(style);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user