File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed
Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ On Linux and Mac this method always returns True. @TODO.
115115| long GdkNativeWindow | long |
116116| __ Return__ | void |
117117
118- Linux-only. This method is utilized in the PyQt example.
118+ Linux-only.
119119
120120
121121### gtk_widget_show (Linux)
@@ -125,7 +125,7 @@ Linux-only. This method is utilized in the PyQt example.
125125| long GtkWidget* | long |
126126| __ Return__ | void |
127127
128- Linux-only. This method is utilized in the PyQt example.
128+ Linux-only.
129129
130130
131131### InstallX11ErrorHandlers (Linux)
@@ -139,4 +139,5 @@ won't be terminated on non-fatal errors. Must be done after
139139initializing GTK.
140140
141141CEF Python calls this function automatically during a call to
142- Initialize, so there is no need to call it manually anymore.
142+ Initialize, so there is no more need to call it manually in
143+ most cases.
Original file line number Diff line number Diff line change 11# This file was generated by setup.py
2- DEF UNAME_SYSNAME = " Darwin "
2+ DEF UNAME_SYSNAME = " Linux "
33DEF PY_MAJOR_VERSION = 2
Original file line number Diff line number Diff line change @@ -133,10 +133,7 @@ cdef void SetBrowserSettings(
133133 cdef CefString* cefString
134134
135135 for key in browserSettings:
136- if key == " window_title" :
137- # CEF Python only options. These are not to be found in CEF.
138- continue
139- elif key == " accept_language_list" :
136+ if key == " accept_language_list" :
140137 cefString = new CefString(& cefBrowserSettings.accept_language_list)
141138 PyToCefStringPointer(browserSettings[key], cefString)
142139 del cefString
You can’t perform that action at this time.
0 commit comments