Skip to content

Commit

Permalink
Fix misleading message
Browse files Browse the repository at this point in the history
Some servers do not provide activities at all. In that case, the label
should not read "have activities enabled", because that implies that
they could be provided, but are disabled. Which is misleading.
  • Loading branch information
erikjv committed Jun 19, 2023
1 parent 05c4494 commit d756534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/activitywidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ void ActivityWidget::showLabels()
t.clear();
QSetIterator<QString> i(_accountsWithoutActivities);
while (i.hasNext()) {
t.append(tr("<br/>Account %1 does not have activities enabled.").arg(i.next()));
t.append(tr("<br/>Account %1 does not provide activities.").arg(i.next()));
}
_ui->_bottomLabel->setTextFormat(Qt::RichText);
_ui->_bottomLabel->setText(t);
Expand Down

0 comments on commit d756534

Please sign in to comment.