summaryrefslogtreecommitdiff
path: root/sd/source/ui
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2024-07-14 00:02:31 +0900
committerTomaž Vajngerl <quikee@gmail.com>2024-07-14 05:20:49 +0200
commit3f7d0f79f1c43222bd160cffd9e443bb5fc91c99 (patch)
tree1c1d7b3df9196e7a6fbf98ee82f7453a1b4c9b1c /sd/source/ui
parentaff09d7cb464af3223ee43cac0483ae3bf22fddd (diff)
annot: make all keys work when writing in annotation window
We did not call the method on the superclass when we don't handle the key ourselves, but we should. Change-Id: I67d55773b7e86297c00727b4791c16a1adcc37f3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170430 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'sd/source/ui')
-rw-r--r--sd/source/ui/annotations/annotationwindow.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/sd/source/ui/annotations/annotationwindow.cxx b/sd/source/ui/annotations/annotationwindow.cxx
index 14952248f5e6..1de79f30cb2c 100644
--- a/sd/source/ui/annotations/annotationwindow.cxx
+++ b/sd/source/ui/annotations/annotationwindow.cxx
@@ -147,7 +147,10 @@ bool AnnotationTextWindow::KeyInput(const KeyEvent& rKeyEvt)
}
}
- return bDone;
+ if (bDone)
+ return true;
+
+ return WeldEditView::KeyInput(rKeyEvt);
}
AnnotationTextWindow::AnnotationTextWindow(AnnotationWindow& rContents)