mirror of
https://github.com/YACReader/yacreader
synced 2026-01-12 03:02:46 -05:00
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
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:
@ -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.
|
||||
|
||||
@ -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) {
|
||||
|
||||
@ -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<br/>"
|
||||
" • New toolbar on macOS<br/>"
|
||||
" • 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<br/>"
|
||||
" • Fix current page/time label content when the content is too long. (new in 9.16.3)<br/>"
|
||||
"<br/>"
|
||||
"<span style=\"font-weight:600\">YACReaderLibrary</span><br/>"
|
||||
" • 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}\"`<br/>"
|
||||
|
||||
Reference in New Issue
Block a user