Skip to content

Commit

Permalink
Make high precision tooltip more descriptive
Browse files Browse the repository at this point in the history
  • Loading branch information
sakertooth committed Apr 19, 2022
1 parent 786c336 commit 68e58f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/TapTempo/TapTempo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ TapTempoView::TapTempoView(ToolPlugin * _tool) :
m_msLabel = new QLabel;
m_hzLabel = new QLabel;

LedCheckBox* checkBox = new LedCheckBox(labelArea, tr("High precision"));
checkBox->setToolTip(tr("High precision"));
LedCheckBox* checkBox = new LedCheckBox(labelArea, tr("Display high precision"));
checkBox->setToolTip(tr("Display high precision"));
connect(checkBox, &LedCheckBox::toggled, [this](bool checked){ m_showDecimal = checked; updateLabels(); });

QVBoxLayout * layout = new QVBoxLayout(this);
Expand Down

0 comments on commit 68e58f1

Please sign in to comment.