diff options
author | DevHugo <hugo.contactpro@gmail.com> | 2018-09-10 11:54:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-10 11:54:47 +0200 |
commit | 305e08b9594b65a3f0a62920e6ad165a9d861ce9 (patch) | |
tree | 72943e94d3eae0979bdf0bb6cc5440368937675d | |
parent | b955d9386b302c185fa882c627e1df66f9a87c76 (diff) |
Update pyqt-fr.html.markdown
-rw-r--r-- | fr-fr/pyqt-fr.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fr-fr/pyqt-fr.html.markdown b/fr-fr/pyqt-fr.html.markdown index 870a2c4e..6da9a380 100644 --- a/fr-fr/pyqt-fr.html.markdown +++ b/fr-fr/pyqt-fr.html.markdown @@ -74,7 +74,7 @@ def showdialog(): b1 = QPushButton("ok", d) b1.move(50, 50) d.setWindowTitle("Dialog") - # Cette "Modality" dit au popup de bloquer le parent pendant qu'il est actif + # Cette modalité dit au popup de bloquer le parent pendant qu'il est actif d.setWindowModality(Qt.ApplicationModal) # En cliquant je voudrais que tout le processus se termine b1.clicked.connect(sys.exit) |