Skip to content

Commit

Permalink
qt:Show the entire Window when double clicking on taskbar
Browse files Browse the repository at this point in the history
  • Loading branch information
ken2812221 committed Apr 16, 2018
1 parent 0d69921 commit 67bf2aa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -968,6 +968,11 @@ void BitcoinGUI::changeEvent(QEvent *e)
QTimer::singleShot(0, this, SLOT(hide()));
e->ignore();
}
else if((wsevt->oldState() & Qt::WindowMinimized) && !isMinimized())
{
QTimer::singleShot(0, this, SLOT(show()));
e->ignore();
}
}
}
#endif
Expand Down

0 comments on commit 67bf2aa

Please sign in to comment.