You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
def on_learning_mode_closed(self):
|
|
"""
|
|
学习模式窗口关闭回调
|
|
- 清除学习窗口引用
|
|
- 更新菜单状态
|
|
"""
|
|
self.learning_window = None
|
|
self.learning_mode_action.setChecked(False)
|
|
self.typing_mode_action.setChecked(True) |