mirror of https://github.com/BOINC/boinc.git
- MGR: Hitting the back button on the ProjectInfo page in the wizard when
you have highlighted a project you are already attached too, should not cause the 'you are already attached to project' dialog to be displayed. This also appears to have fixed the random page being displayed when the dialog has been dismissed. clientgui/ ProjectInfoPage.cpp svn path=/trunk/boinc/; revision=19736
This commit is contained in:
parent
32daf9dedf
commit
6c10718300
|
@ -9577,3 +9577,13 @@ Rom 30 Nov 2009
|
|||
|
||||
client/
|
||||
boinc_log.cpp
|
||||
|
||||
Rom 30 Nov 2009
|
||||
- MGR: Hitting the back button on the ProjectInfo page in the wizard when
|
||||
you have highlighted a project you are already attached too, should
|
||||
not cause the 'you are already attached to project' dialog to be
|
||||
displayed. This also appears to have fixed the random page being
|
||||
displayed when the dialog has been dismissed.
|
||||
|
||||
clientgui/
|
||||
ProjectInfoPage.cpp
|
||||
|
|
|
@ -366,6 +366,9 @@ void CProjectInfoPage::OnPageChanged( wxWizardExEvent& event ) {
|
|||
*/
|
||||
|
||||
void CProjectInfoPage::OnPageChanging( wxWizardExEvent& event ) {
|
||||
if (event.GetDirection() == false) return;
|
||||
wxLogTrace(wxT("Function Start/End"), wxT("CProjectInfoPage::OnPageChanging - Function Begin"));
|
||||
|
||||
CMainDocument* pDoc = wxGetApp().GetDocument();
|
||||
CSkinAdvanced* pSkinAdvanced = wxGetApp().GetSkinManager()->GetAdvanced();
|
||||
wxString strTitle;
|
||||
|
@ -423,6 +426,8 @@ void CProjectInfoPage::OnPageChanging( wxWizardExEvent& event ) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
wxLogTrace(wxT("Function Start/End"), wxT("CProjectInfoPage::OnPageChanging - Function End"));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue