Custom comments list, right depth

I’m afraid this is the problem:

Wrong:

<?php if ( $depth + 1) { ?>

Correct:

<?php if ( $depth > 1) { ?>

That is what I think…