Skip to content

Commit 67bf2aa

Browse files
committed
qt:Show the entire Window when double clicking on taskbar
1 parent 0d69921 commit 67bf2aa

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/qt/bitcoingui.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -968,6 +968,11 @@ void BitcoinGUI::changeEvent(QEvent *e)
968968
QTimer::singleShot(0, this, SLOT(hide()));
969969
e->ignore();
970970
}
971+
else if((wsevt->oldState() & Qt::WindowMinimized) && !isMinimized())
972+
{
973+
QTimer::singleShot(0, this, SLOT(show()));
974+
e->ignore();
975+
}
971976
}
972977
}
973978
#endif

0 commit comments

Comments
 (0)