Disabling the progress status bar if more biddings are placed than expected. (Easy way to indicate a problem in the GUI).

This commit is contained in:
2026-02-17 09:05:45 +01:00
parent c38bacc387
commit bfb8e43c34
2 changed files with 30 additions and 16 deletions

View File

@ -20,9 +20,11 @@ class BiddingRoundProgressLayout : public QHBoxLayout {
int m_nCurrentBiddings;
int m_nExpectedBiddings;
QLabel* m_nBiddings1Label = nullptr;
QLabel* m_nExpectedBidding1Label = nullptr;
QProgressBar* m_biddingRound1ProgressBar = nullptr;
QLabel* m_nBiddingsLabel = nullptr;
QLabel* m_nExpectedBiddingLabel = nullptr;
QProgressBar* m_biddingRoundProgressBar = nullptr;
void updateEnabledStatus();
};
#endif // BIDDINGROUNDPROGRESSLAYOUT_H