mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Make sure to end model reset when prematurely returning from toggleField
Fixes an issue where Anki would stall after trying to remove the last browser column.
This commit is contained in:
parent
377bb78b88
commit
308c23fcba
1 changed files with 1 additions and 0 deletions
|
@ -735,6 +735,7 @@ by clicking on one on the left."""))
|
|||
self.model.beginReset()
|
||||
if type in self.model.activeCols:
|
||||
if len(self.model.activeCols) < 2:
|
||||
self.model.endReset()
|
||||
return showInfo(_("You must have at least one column."))
|
||||
self.model.activeCols.remove(type)
|
||||
adding=False
|
||||
|
|
Loading…
Reference in a new issue