MGR: word-wrap CompletionBrandedMessage static text in Account manager Wizard Completion page for GridRepublic.

svn path=/trunk/boinc/; revision=16671
This commit is contained in:
Charlie Fenton 2008-12-12 07:25:52 +00:00
parent bb4837a8a5
commit 4c4847394a
1 changed files with 5 additions and 3 deletions

View File

@ -316,9 +316,11 @@ void CCompletionPage::OnPageChanged( wxWizardExEvent& event ) {
}
Fit();
int w, h;
m_pCompletionBrandedMessage->GetSize(&w, &h);
m_pCompletionBrandedMessage->Wrap(w - 5);
int x, y, x1, y1, w, h;
GetPosition(&x, &y);
m_pCompletionBrandedMessage->GetPosition(&x1, &y1);
pWAP->GetSize(&w, &h);
m_pCompletionBrandedMessage->Wrap(w - x - x1 - 5);
Fit();
// Is this supposed to be completely automated?