mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5985
This commit is contained in:
parent
a03ff945a9
commit
86b28b5df9
|
@ -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
|
||||
|
|
|
@ -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__
|
||||
|
|
Loading…
Reference in New Issue