Skip to content

Commit

Permalink
DolphinQt: Fix tooltip of output mapping buttons.
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-woyak committed Nov 4, 2019
1 parent 1bdf43d commit 32cf4b7
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Source/Core/DolphinQt/Config/Mapping/MappingButton.cpp
Expand Up @@ -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);

Expand Down

0 comments on commit 32cf4b7

Please sign in to comment.