no message

svn path=/trunk/boinc/; revision=1200
This commit is contained in:
Dan Werthimer 2003-05-14 21:58:48 +00:00
parent 4031ac5d64
commit 7fe21829aa
3 changed files with 5 additions and 4 deletions

View File

@ -258,6 +258,7 @@ int CLIENT_STATE::init() {
if (update_prefs) {
for (i=0; i<projects.size(); i++) {
projects[i]->sched_rpc_pending = true;
projects[i]->min_rpc_time = 0;
}
}

View File

@ -1066,7 +1066,10 @@ void CMainWindow::OnCommandProjectGetPrefs()
{
PROJECT *proj;
proj = GetProjectFromContextMenu();
if (proj) proj->sched_rpc_pending = true;
if (proj) {
proj->sched_rpc_pending = true;
proj->min_rpc_time = 0;
}
}
//////////

3
todo
View File

@ -84,9 +84,6 @@ Delete files if needed to honor disk usage constraint
should include per-result constraints (e.g. giant stderr files)
inform user if files deleted
- "Connect Now" command should apply to a particular project,
and should override the backoff on that project
implement server watchdogs
-----------------------