mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
DolphinQt: Fix tooltip of output mapping buttons.
This commit is contained in:
parent
1bdf43dd78
commit
32cf4b76be
1 changed files with 9 additions and 2 deletions
|
@ -53,8 +53,15 @@ MappingButton::MappingButton(MappingWidget* parent, ControlReference* ref, bool
|
|||
|
||||
setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
|
||||
|
||||
setToolTip(
|
||||
tr("Left-click to detect input.\nMiddle-click to clear.\nRight-click for more options."));
|
||||
if (IsInput())
|
||||
{
|
||||
setToolTip(
|
||||
tr("Left-click to detect input.\nMiddle-click to clear.\nRight-click for more options."));
|
||||
}
|
||||
else
|
||||
{
|
||||
setToolTip(tr("Left/Right-click to configure output.\nMiddle-click to clear."));
|
||||
}
|
||||
|
||||
connect(this, &MappingButton::clicked, this, &MappingButton::Clicked);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue