summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/pdf/pdfviewer/viewer.qml3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/pdf/pdfviewer/viewer.qml b/examples/pdf/pdfviewer/viewer.qml
index a8e581a45..095bc3985 100644
--- a/examples/pdf/pdfviewer/viewer.qml
+++ b/examples/pdf/pdfviewer/viewer.qml
@@ -140,7 +140,7 @@ ApplicationWindow {
from: 1
to: document.pageCount
editable: true
- onValueChanged: pageView.currentPage = value - 1
+ onValueChanged: pageView.goToPage(value - 1)
Shortcut {
sequence: StandardKey.MoveToPreviousPage
onActivated: currentPageSB.value--
@@ -223,7 +223,6 @@ ApplicationWindow {
PdfPageView {
id: pageView
-// currentPage: currentPageSB.value - 1
// TODO should work but ends up being NaN in QQuickSpinBoxPrivate::setValue() (?!)
// onCurrentPageChanged: currentPageSB.value = pageView.currrentPage + 1
onCurrentPageReallyChanged: currentPageSB.value = page + 1