We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 491324c commit 33d60c7Copy full SHA for 33d60c7
1 file changed
cefpython/settings.pyx
@@ -168,7 +168,8 @@ cdef void SetApplicationSettings(
168
elif key == "ignore_certificate_errors":
169
cefAppSettings.ignore_certificate_errors = bool(appSettings[key])
170
elif key == "background_color":
171
- cefAppSettings.background_color = int(appSettings[key])
+ cefAppSettings.background_color = \
172
+ <cef_types.uint32>int(appSettings[key])
173
else:
174
raise Exception("Invalid appSettings key: %s" % key)
175
0 commit comments