diff options
Diffstat (limited to 'src/MainWindow.cpp')
| -rw-r--r-- | src/MainWindow.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 9bbdd00..00e375d 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -287,9 +287,10 @@ TabInfos* MainWindow::NewGame(std::shared_ptr<Game> game) { void MainWindow::ShowAbout(){ DialogAbout *dialog=new DialogAbout(this); - wxRichTextCtrl *t=dialog->info_richtext; + dialog->ochess_icon->SetBitmap(LoadPNG("ochess",wxSize(80,80))); // Populate info: + wxRichTextCtrl *t=dialog->info_richtext; wxFont font(wxFontInfo(12)); t->SetFont(font); t->BeginAlignment(wxTEXT_ALIGNMENT_CENTRE); @@ -299,7 +300,7 @@ void MainWindow::ShowAbout(){ t->EndFontSize(); t->Newline(); t->EndBold(); - t->WriteText(wxT("An open source software for chess games analysis and database management.")); + t->WriteText(wxT("An open source software for chess games analysis and games databases management.")); t->Newline(); t->Newline(); t->BeginFontSize(8); |
