diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -999,6 +999,10 @@ if (!(wsevt->oldState() & Qt::WindowMinimized) && isMinimized()) { QTimer::singleShot(0, this, SLOT(hide())); e->ignore(); + } else if ((wsevt->oldState() & Qt::WindowMinimized) && + !isMinimized()) { + QTimer::singleShot(0, this, SLOT(show())); + e->ignore(); } } }