client: trigger work fetch if user clears "no new tasks" for a project

This commit is contained in:
David Anderson 2013-05-16 12:40:16 -07:00
parent 8a1569c384
commit 91cdbc3aef
1 changed files with 1 additions and 0 deletions

View File

@ -286,6 +286,7 @@ static void handle_project_allowmorework(GUI_RPC_CONN& grc) {
gstate.set_client_state_dirty("Project modified by user"); gstate.set_client_state_dirty("Project modified by user");
msg_printf(p, MSG_INFO, "work fetch resumed by user"); msg_printf(p, MSG_INFO, "work fetch resumed by user");
p->dont_request_more_work = false; p->dont_request_more_work = false;
gstate.request_work_fetch("project work fetch resumed by user");
grc.mfout.printf("<success/>\n"); grc.mfout.printf("<success/>\n");
} }