mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-09 17:44:01 -07:00
fix text missing from chat macro list's buttons when hidden (#5330)
* fix text missing from chat macro list's buttons when hidden * turns out you don't need to set tooltip if you already set text
This commit is contained in:
parent
ed907d7c6f
commit
34d3d60f95
1 changed files with 3 additions and 6 deletions
|
|
@ -941,11 +941,8 @@ void DeckEditorSettingsPage::retranslateUi()
|
||||||
pixmapCacheLabel.setText(tr("Picture Cache Size:"));
|
pixmapCacheLabel.setText(tr("Picture Cache Size:"));
|
||||||
pixmapCacheEdit.setToolTip(tr("In-memory cache for pictures not currently on screen"));
|
pixmapCacheEdit.setToolTip(tr("In-memory cache for pictures not currently on screen"));
|
||||||
updateNowButton->setText(tr("Update Spoilers"));
|
updateNowButton->setText(tr("Update Spoilers"));
|
||||||
aAdd->setToolTip(tr("Add New URL"));
|
|
||||||
aAdd->setText(tr("Add New URL"));
|
aAdd->setText(tr("Add New URL"));
|
||||||
aEdit->setToolTip(tr("Edit URL"));
|
|
||||||
aEdit->setText(tr("Edit URL"));
|
aEdit->setText(tr("Edit URL"));
|
||||||
aRemove->setToolTip(tr("Remove URL"));
|
|
||||||
aRemove->setText(tr("Remove URL"));
|
aRemove->setText(tr("Remove URL"));
|
||||||
networkRedirectCacheTtlEdit.setSuffix(" " + tr("Day(s)"));
|
networkRedirectCacheTtlEdit.setSuffix(" " + tr("Day(s)"));
|
||||||
}
|
}
|
||||||
|
|
@ -1187,9 +1184,9 @@ void MessagesSettingsPage::retranslateUi()
|
||||||
hexHighlightLabel.setText(tr("(Color is hexadecimal)"));
|
hexHighlightLabel.setText(tr("(Color is hexadecimal)"));
|
||||||
customAlertStringLabel.setText(tr("Separate words with a space, alphanumeric characters only"));
|
customAlertStringLabel.setText(tr("Separate words with a space, alphanumeric characters only"));
|
||||||
customAlertString->setPlaceholderText(tr("Word1 Word2 Word3"));
|
customAlertString->setPlaceholderText(tr("Word1 Word2 Word3"));
|
||||||
aAdd->setToolTip(tr("Add New Message"));
|
aAdd->setText(tr("Add New Message"));
|
||||||
aEdit->setToolTip(tr("Edit Message"));
|
aEdit->setText(tr("Edit Message"));
|
||||||
aRemove->setToolTip(tr("Remove Message"));
|
aRemove->setText(tr("Remove Message"));
|
||||||
}
|
}
|
||||||
|
|
||||||
SoundSettingsPage::SoundSettingsPage()
|
SoundSettingsPage::SoundSettingsPage()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue