summaryrefslogtreecommitdiffstats
path: root/examples/pdf
diff options
context:
space:
mode:
Diffstat (limited to 'examples/pdf')
-rw-r--r--examples/pdf/multipage/viewer.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pdf/multipage/viewer.qml b/examples/pdf/multipage/viewer.qml
index 77c06f80f..bbc28cd8d 100644
--- a/examples/pdf/multipage/viewer.qml
+++ b/examples/pdf/multipage/viewer.qml
@@ -139,7 +139,7 @@ ApplicationWindow {
from: 1
to: document.pageCount
editable: true
- onValueChanged: view.currentPage = value - 1
+ onValueModified: view.goToPage(value - 1)
Shortcut {
sequence: StandardKey.MoveToPreviousPage
onActivated: currentPageSB.value--
@@ -256,7 +256,7 @@ ApplicationWindow {
anchors.fill: parent
document: root.document
searchString: searchField.text
- onCurrentPageReallyChanged: currentPageSB.value = page + 1
+ onCurrentPageChanged: currentPageSB.value = view.currentPage + 1
}
footer: ToolBar {