Skip to content

Commit

Permalink
Implement accrual limit warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescowens committed Feb 6, 2023
1 parent 2192e2c commit 6c69009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/overviewpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ void OverviewPage::updatePendingAccrual()
bool near_limit = false;

ui->accrualLabel->setText(researcherModel->formatAccrual(unit, near_limit));
if (true /* near_limit */) {
if (near_limit) {
ui->accrualLimitWarningIconlabel->show();
} else {
ui->accrualLimitWarningIconlabel->hide();
Expand Down

0 comments on commit 6c69009

Please sign in to comment.