Current card get selected in browser

I'm pretty sure it was the way it worked before. I'm surprised that
it's not the case anymore.

If you open the browser from the reviewer, the current card get
selected if it exists. The current note is still entirely displayed.

Personally, I want to know easily which is the current card. Opening
the browser is the easiest way to do it; assuming I can see the
current card selected
This commit is contained in:
Arthur Milchior 2020-02-17 01:57:11 -08:00
parent f7ebb8c28f
commit 8ecd606ada

View File

@ -778,10 +778,11 @@ class Browser(QMainWindow):
def search(self) -> None:
if "is:current" in self._lastSearchTxt:
# show current card if there is one
c = self.mw.reviewer.card
self.card = self.mw.reviewer.card
c = self.card = self.mw.reviewer.card
nid = c and c.nid or 0
self.model.search("nid:%d" % nid)
if nid:
self.model.search("nid:%d" % nid)
self.focusCid(c.id)
else:
self.model.search(self._lastSearchTxt)