*** empty log message ***

svn path=/trunk/boinc/; revision=5985
This commit is contained in:
Rom Walton 2005-04-30 00:23:54 +00:00
parent a03ff945a9
commit 86b28b5df9
2 changed files with 8 additions and 0 deletions

View File

@ -5885,6 +5885,9 @@ Rom 29 April 2005
- Bug Fix: UpdateSelection should be called everytime the listview has
been refreshed in case a project/result/transfer has changed its
status which might cause a button change.
- Bug Fix: Double clicking on the taskbar icon will restore the window
as well as show it.
clientgui/
BOINCBaseView.cpp
BOINCTaskBar.cpp

View File

@ -116,6 +116,11 @@ void CTaskBarIcon::OnOpen(wxCommandEvent& WXUNUSED(event)) {
if (pFrame) {
pFrame->Show();
if (pFrame->IsMaximized()) {
pFrame->Maximize(true);
} else {
pFrame->Maximize(false);
}
pFrame->SendSizeEvent();
#ifdef __WXMSW__