diff --git a/src/apps/stylededit/StatusView.cpp b/src/apps/stylededit/StatusView.cpp index 30bf0f9045..a6bdfccf76 100644 --- a/src/apps/stylededit/StatusView.cpp +++ b/src/apps/stylededit/StatusView.cpp @@ -243,7 +243,7 @@ StatusView::_ValidatePreferredSize() float width = ceilf(StringWidth(fCellText[i])); if (width > 0) width += kHorzSpacing * 2; - if (width > fCellWidth[i]) + if (width > fCellWidth[i] || i != kPositionCell) fCellWidth[i] = width; fPreferredSize.width += fCellWidth[i]; }