We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8859e75 commit 00a9b1cCopy full SHA for 00a9b1c
3 files changed
cefpython1/window_utils_win.pyx
@@ -0,0 +1 @@
1
+# Put EnforceWindowIcon() and EnforeWindowTitle() here.
cefpython1/windows_example/pyqt.py
@@ -110,4 +110,9 @@ def stopTimer(self):
110
app.exec_()
111
app.stopTimer()
112
113
+ # Need to destroy QApplication() by assigning None, otherwise Shutdown() fails.
114
+ # Unset main window also just to be safe.
115
+ mainWindow = None
116
+ app = None
117
+
118
cefpython.Shutdown()
cefpython1/windows_example/pyside.py
@@ -127,5 +127,10 @@ def stopTimer(self):
127
mainWindow.show()
128
129
130
131
132
133
134
135
136
0 commit comments