diff --git a/CHANGELOG.md b/CHANGELOG.md
index cdf70a0f..04f4c2dc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,9 @@ Version counting is based on semantic versioning (Major.Feature.Patch)
## 9.16.3 (WIP)
+### YACReader
+* Fix current page/time label content when the content is too long.
+
### YACReaderLibrary
* Fix table view last section stretch. Before it was only working randomly.
* Fix empty table view caused by wront state being saved. You'll need to reconfigure the table view headers to your liking after this.
diff --git a/YACReader/page_label_widget.cpp b/YACReader/page_label_widget.cpp
index e0a7ee34..8fd6a4b9 100644
--- a/YACReader/page_label_widget.cpp
+++ b/YACReader/page_label_widget.cpp
@@ -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) {
diff --git a/custom_widgets/whats_new_dialog.cpp b/custom_widgets/whats_new_dialog.cpp
index 966997d7..4f0e1dcc 100644
--- a/custom_widgets/whats_new_dialog.cpp
+++ b/custom_widgets/whats_new_dialog.cpp
@@ -52,6 +52,7 @@ YACReader::WhatsNewDialog::WhatsNewDialog(QWidget *parent)
" • Don't use scroll animations on macOS by default, where hdpi scroll is most likely to be used
"
" • New toolbar on macOS
"
" • New mouse modes to turn pages - you can setup the app to use the left/right buttons to turn pages directly or click on the left/right part of the screen to turn pages
"
+ " • Fix current page/time label content when the content is too long. (new in 9.16.3)
"
"
"
"YACReaderLibrary
"
" • Improve flexibility of the open comic in third party app setting so more complex commands can be used, e.g. `open -a \"/Applications/My Reader.app\" \"{comic_file_path}\"`
"