Fix get_item_from_card_id()

This commit is contained in:
RumovZ 2021-04-06 12:06:08 +02:00
parent a1277b0919
commit 4903a325d4

View File

@ -149,9 +149,6 @@ class Table:
def select_single_card(self, card_id: CardId) -> None:
"""Try to set the selection to the item corresponding to the given card."""
self.clear_selection()
if self.is_notes_mode():
self._view.selectRow(0)
else:
if (row := self._model.get_card_row(card_id)) is not None:
self._view.selectRow(row)
@ -772,7 +769,7 @@ class NoteState(ItemState):
return self.col.find_notes(search, order)
def get_item_from_card_id(self, card: CardId) -> ItemId:
return self.get_card(card).note().id
return self.col.get_card(card).note().id
def get_card_ids(self, items: Sequence[ItemId]) -> Sequence[CardId]:
return super().card_ids_from_note_ids(items)