Fix current page/time label content when the content is too long.
Some checks failed
Build / Initialization (push) Has been cancelled
Build / Code Format Validation (push) Has been cancelled
Build / Linux (Qt5) (push) Has been cancelled
Build / Linux (Qt6) (push) Has been cancelled
Build / Linux (Qt6 + 7zip) (push) Has been cancelled
Build / macOS (Qt6 Universal) (push) Has been cancelled
Build / macOS (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt6) (push) Has been cancelled
Build / Windows ARM64 (Qt6) (push) Has been cancelled
Build / Windows x86 (Qt5) (push) Has been cancelled
Build / Docker amd64 Image (push) Has been cancelled
Build / Docker arm64 Image (push) Has been cancelled
Build / Publish Dev Builds (push) Has been cancelled
Build / Publish Release (push) Has been cancelled

This commit is contained in:
luisangelsm
2025-12-30 19:10:09 +01:00
parent 54ef16e318
commit 0ea6885931
3 changed files with 5 additions and 1 deletions

View File

@ -21,7 +21,7 @@ PageLabelWidget::PageLabelWidget(QWidget *parent)
textLabel = new QLabel(this);
textLabel->setAlignment(Qt::AlignVCenter | Qt::AlignHCenter);
textLabel->setWordWrap(true); // Allow wrapping
textLabel->setWordWrap(false); // Wrapping needs to be disabled, we need to show all the text in one line
int contentMargin = 0;
if (verticalRes <= 1024) {