IDEA-169924 remove empty space under breadcrumbs in editor

This commit is contained in:
Sergey Malenkov
2017-05-11 15:14:49 +03:00
parent 4b4863e827
commit c796dfab00
@@ -37,7 +37,7 @@ final class PsiBreadcrumbs extends Breadcrumbs {
void updateBorder(int offset) {
// do not use scaling here because this border is used to align breadcrumbs with a gutter
setBorder(new EmptyBorder(above ? 2 : 0, offset, above ? 0 : 2, 0));
setBorder(new EmptyBorder(0, offset, 0, 0));
}
@Override