From 7fe21829aa28d09cc2b25ac87d1d44312fe00db6 Mon Sep 17 00:00:00 2001 From: Dan Werthimer Date: Wed, 14 May 2003 21:58:48 +0000 Subject: [PATCH] no message svn path=/trunk/boinc/; revision=1200 --- client/client_state.C | 1 + client/win/wingui_mainwindow.cpp | 5 ++++- todo | 3 --- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/client/client_state.C b/client/client_state.C index 6abc341c37..b683eddf11 100644 --- a/client/client_state.C +++ b/client/client_state.C @@ -258,6 +258,7 @@ int CLIENT_STATE::init() { if (update_prefs) { for (i=0; isched_rpc_pending = true; + projects[i]->min_rpc_time = 0; } } diff --git a/client/win/wingui_mainwindow.cpp b/client/win/wingui_mainwindow.cpp index b87d51d44a..7dbdaae8a3 100755 --- a/client/win/wingui_mainwindow.cpp +++ b/client/win/wingui_mainwindow.cpp @@ -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; + } } ////////// diff --git a/todo b/todo index e9fc8cbb51..9347c754da 100755 --- a/todo +++ b/todo @@ -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 -----------------------