Changeset 1099:a2d5a4d1c6c1 for src
- Timestamp:
- 08/11/23 14:47:06 (16 months ago)
- Branch:
- python3
- Phase:
- public
- Location:
- src/mlx/gui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gui/cef.py
r1097 r1099 124 124 def finalize(self): 125 125 """Close the browser and release it.""" 126 self._browser.CloseBrowser() 127 self._browser = None 126 if self._browser is not None: 127 self._browser.CloseBrowser(True) 128 self._browser = None 128 129 129 130 def _onLoadEnd(self, browser, frame, http_code): -
src/mlx/gui/common.py
r1083 r1099 34 34 pass 35 35 from gi.repository import Pango 36 gi.require_version("PangoCairo", "1.0") 36 37 from gi.repository import PangoCairo 37 38 from gi.repository import GLib -
src/mlx/gui/gui.py
r1098 r1099 869 869 def flushStdIO(self): 870 870 """Flush any text to the standard error that could not be logged.""" 871 if self._stdioText :871 if self._stdioText and sys.__stderr__ is not None: 872 872 sys.__stderr__.write(self._stdioText) 873 873
Note:
See TracChangeset
for help on using the changeset viewer.