mirror of https://github.com/BOINC/boinc.git
- 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:
parent
53f0d92ab5
commit
9e26e3dac9
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue