1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-01-14 09:18:06 +03:00

fix Indicators tooltip for Download option

This commit is contained in:
Michail Vourlakos 2019-12-28 14:25:35 +02:00
parent 70cb2f7fde
commit 66e8e31701

View File

@ -29,8 +29,9 @@ LatteComponents.ComboBoxButton{
id: custom
checkable: true
buttonToolTip: checked ? i18n("Use %0 style for your indicators").arg(buttonText) :
i18n("Download indicator styles from the internet")
buttonToolTip: custom.type === "download:" ? i18n("Download indicator styles from the internet") :
i18n("Use %0 style for your indicators").arg(buttonText)
comboBoxTextRole: "name"
comboBoxIconRole: "icon"
comboBoxIconToolTipRole: "iconToolTip"