Skip to content

Commit

Permalink
Update tooltip text to be more explanatory
Browse files Browse the repository at this point in the history
  • Loading branch information
vadi2 committed Mar 25, 2020
1 parent fac9fc9 commit 842e92b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mudlet.cpp
Expand Up @@ -413,7 +413,7 @@ mudlet::mudlet()
QStringList issueReportIcons {"face-uncertain.png", "face-surprise.png", "face-smile.png", "face-sad.png", "face-plain.png"};
auto randomIcon = QRandomGenerator::global()->bounded(issueReportIcons.size());
mpActionReportIssue->setIcon(QIcon(QStringLiteral(":/icons/%1").arg(issueReportIcons.at(randomIcon))));
mpActionReportIssue->setToolTip(tr("Report an issue about the Mudlet Public Test Build"));
mpActionReportIssue->setToolTip(tr("The public test build gets newer features to you quicker, and you help us find issues in them quicker. Spotted something odd? Let us know asap!"));
mpMainToolBar->addAction(mpActionReportIssue);
mpActionReportIssue->setObjectName(QStringLiteral("reportissue_action"));
mpMainToolBar->widgetForAction(mpActionReportIssue)->setObjectName(mpActionReportIssue->objectName());
Expand Down
2 changes: 1 addition & 1 deletion src/ui/main_window.ui
Expand Up @@ -314,7 +314,7 @@
<string>Report an issue</string>
</property>
<property name="toolTip">
<string>Report an issue about the public test build</string>
<string>The public test build gets newer features to you quicker, and you help us find issues in them quicker. Spotted something odd? Let us know asap!</string>
</property>
</action>
</widget>
Expand Down

0 comments on commit 842e92b

Please sign in to comment.