def unload_graphics(self):
     Wrapper.unload_graphics(self)
     if self._hscrollbar is not None:
         self._hscrollbar.unload()
         self._hscrollbar = None
     if self._vscrollbar is not None:
         self._vscrollbar.unload()
         self._vscrollbar = None
示例#2
0
 def unload_graphics(self):
     Wrapper.unload_graphics(self)
     if self._hscrollbar is not None:
         self._hscrollbar.unload()
         self._hscrollbar = None
     if self._vscrollbar is not None:
         self._vscrollbar.unload()
         self._vscrollbar = None
示例#3
0
 def unload_graphics(self):
     if self._frame is not None:
         self._frame.unload()
         self._frame = None
     Wrapper.unload_graphics(self)
示例#4
0
文件: gui.py 项目: JStation/omphalos
 def unload_graphics(self):
     if self._frame is not None:
         self._frame.unload()
         self._frame = None
     Wrapper.unload_graphics(self)