diff --git a/src/widgets/stretchheaderview.cpp b/src/widgets/stretchheaderview.cpp index 3dd7ba571..598b1857c 100644 --- a/src/widgets/stretchheaderview.cpp +++ b/src/widgets/stretchheaderview.cpp @@ -118,6 +118,11 @@ void StretchHeaderView::HideSection(int logical) { } void StretchHeaderView::ShowSection(int logical) { + // makes sure the column will apear no matter what + if (sectionSize(logical) < 10) { + resizeSection(logical, 10); + } + if (!stretch_enabled_) { showSection(logical); return;