add comment

This commit is contained in:
RickyRister 2025-02-27 00:00:46 -08:00
parent 93d28717e0
commit 659fd2f163

View file

@ -701,6 +701,10 @@ void TabSupervisor::talkLeft(TabMessage *tab)
removeTab(indexOf(tab));
}
/**
* Creates a new deck editor tab
* @param deckToOpen The deck to open in the tab. Creates a copy of the DeckLoader instance.
*/
TabDeckEditor *TabSupervisor::addDeckEditorTab(const DeckLoader *deckToOpen)
{
auto *tab = new TabDeckEditor(this);