def hide_splash_screen(self, now=False):
def hide(self):
for k in self.splash or []:
if self.splash[k] is not None:
self.splash[k].destroy()
self.splash = None
if now:
hide(self)
else:
gobject.idle_add(hide, self)
评论列表
文章目录