include/LibreOfficeKit/LibreOfficeKitEnums.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit a6760a0fc4461ba58c9ddb089c7ceb8c962f5dc5 Author: Tor Lillqvist <t...@collabora.com> AuthorDate: Wed Feb 16 11:10:25 2022 +0200 Commit: Tor Lillqvist <t...@collabora.com> CommitDate: Wed Feb 16 20:30:07 2022 +0100 Don't confusingly use the term "gesture" for plain old mouse events "Gesture" is a term typically used for finger input on touch devices. The LibreOfficeKitMouseEventType type is for traditional mouse events. Change-Id: Id14ab725567546e33f3dd1277fb4380b9f81d59b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129985 Tested-by: Tor Lillqvist <t...@collabora.com> Reviewed-by: Tor Lillqvist <t...@collabora.com> diff --git a/include/LibreOfficeKit/LibreOfficeKitEnums.h b/include/LibreOfficeKit/LibreOfficeKitEnums.h index 006713447aed..d15e0e5a70ba 100644 --- a/include/LibreOfficeKit/LibreOfficeKitEnums.h +++ b/include/LibreOfficeKit/LibreOfficeKitEnums.h @@ -941,11 +941,11 @@ static inline const char* lokCallbackTypeToString(int nType) typedef enum { - /// A pressed gesture has started. + /// A mouse button has been pressed down. LOK_MOUSEEVENT_MOUSEBUTTONDOWN, - /// A pressed gesture has finished. + /// A mouse button has been let go. LOK_MOUSEEVENT_MOUSEBUTTONUP, - /// A change has happened during a press gesture. + /// The mouse has moved while a button is pressed. LOK_MOUSEEVENT_MOUSEMOVE } LibreOfficeKitMouseEventType;