Skip to content

Commit

Permalink
Add tooltip for trigger section in handler widget.
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelSchneid3r committed Dec 28, 2023
1 parent 7add315 commit 9cb485c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/settings/handlerwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class HandlerModel : public QAbstractTableModel,
else if (role == Qt::ToolTipRole)
switch ((Column) section) {
case Column::Name: return headerData(section, orientation, Qt::DisplayRole);
case Column::Trigger: return headerData(section, orientation, Qt::DisplayRole);
case Column::Trigger: return QStringLiteral("The trigger of the handler. Spaces are visualized by •.");
case Column::THandler: return QStringLiteral("Enabled trigger query handlers.");
case Column::GHandler: return QStringLiteral("Enabled global query handlers.");
case Column::FHandler: return QStringLiteral("Enabled fallback query handlers.");
Expand Down

0 comments on commit 9cb485c

Please sign in to comment.