I'm currently trying to set the vertical spacing within \tcblistof command.
The template which causes my problems can be found here: https://github.com/ManuelRauber/LaTeX-Template
At first here are some screenshots showing my problem.
The table of contents shows what I want to have for all my listings: The caption of chapters are grouped together and between the chapters there is a bit more space. This is completely fine.

The same is for the list of figures and the list of tables (lof as example). Chapters are grouped together and minimal space between the captions within a chapter.

The problems are my list of listings. Created by the following code (see the GitHub link for a complete example or here https://tex.stackexchange.com/a/124688/15907):
% by Thomas F. Sturm (https://tex.stackexchange.com/a/124688/15907)
\newtcblisting[auto counter,number within=section,
list inside=mypyg]{listingsbox}[3][]{%
listing only,title={Listing \thetcbcounter: #3},
list entry={\protect\numberline{\thetcbcounter}#3},
enhanced,breakable,drop fuzzy shadow,myminted/#2,#1}
\begin{document}
\tcblistof[\addchap*]{mypyg}{Codeverzeichnis}
This is the output:

I tried the solution found here: tcblistof, book class and vertical spacing. But that didn't work for me (and I changed the patchcmd to use addchap instead of chapter).
What do I need to do to get the \tcblistof to group the entries by chapter (and get minimals spacing within in chapter)?


