- MGR: Make sure the dot is red if the project has been suspended for

the given task.
        
    clientgui/
        sg_TaskPanel.cpp

svn path=/trunk/boinc/; revision=24451
This commit is contained in:
Rom Walton 2011-10-21 17:28:56 +00:00
parent 53f0d92ab5
commit 9e26e3dac9
2 changed files with 3 additions and 1 deletions

View File

@ -7624,6 +7624,8 @@ Rom 21 Oct 2011
radius.
- MGR: Fix project name font in the tasks area, normal size. Increase
it's weight to BOLD.
- MGR: Make sure the dot is red if the project has been suspended for
the given task.
clientgui/
sg_PanelBase.cpp

View File

@ -778,7 +778,7 @@ void CSimpleTaskPanel::UpdateTaskSelectionList(bool reskin) {
for(j = 0; j < count; ++j) {
selData = (TaskSelectionData*)m_TaskSelectionCtrl->GetClientData(j);
ctrlResult = selData->result;
if (Suspended() || (ctrlResult->suspended_via_gui)) {
if (Suspended() || ctrlResult->suspended_via_gui || ctrlResult->project_suspended_via_gui) {
newColor = redDot;
} else if (isRunning(ctrlResult)) {
newColor = greenDot;