1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-16 21:35:24 +00:00

Add WIN_VCARD to win_get_tab_identifier()

Thanks to 12b997c5f3 we already found a
place where we should add this missing window type.
AFAIK there can be only one vcard window.
This commit is contained in:
Michael Vetter 2023-03-23 10:28:47 +01:00
parent ac440e72d7
commit 732cbbfefc

View File

@ -433,6 +433,10 @@ win_get_tab_identifier(ProfWin* window)
{
return strdup("xmlconsole");
}
case WIN_VCARD:
{
return strdup("vcard");
}
}
assert(FALSE);
}