Keep trezor pin dialog on top of other windows

This commit is contained in:
Michael Wozniak 2014-09-13 18:14:01 -04:00
parent ad4449dc38
commit c9fab344ca
1 changed files with 1 additions and 0 deletions

View File

@ -433,6 +433,7 @@ class TrezorQtGuiMixin(object):
d = QDialog(None)
d.setModal(1)
d.setWindowTitle(_("Enter PIN"))
d.setWindowFlags(d.windowFlags() | QtCore.Qt.WindowStaysOnTopHint)
matrix = PinMatrixWidget()
vbox = QVBoxLayout()