This is an automated email from the ASF dual-hosted git repository.
pushminakazi pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 76dfd3d Added mouseTarget in ContextMenuEvent.as
76dfd3d is described below
commit 76dfd3d13149915ef6f6b12111270ef15490f90b
Author: pashminakazi <[email protected]>
AuthorDate: Sat Sep 18 08:14:17 2021 -0700
Added mouseTarget in ContextMenuEvent.as
---
.../org/apache/royale/textLayout/events/ContextMenuEvent.as | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git
a/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/events/ContextMenuEvent.as
b/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/events/ContextMenuEvent.as
index ba7cab0..1aa7e2a 100644
---
a/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/events/ContextMenuEvent.as
+++
b/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/events/ContextMenuEvent.as
@@ -35,5 +35,13 @@ package org.apache.royale.textLayout.events {
public function set contextMenuOwner(value:Object):void {
_contextMenuOwner = value;
}
+
+ public var _mouseTarget:Object;
+ public function get mouseTarget():Object {
+ return _mouseTarget;
+ }
+ public function set mouseTarget(value:Object):void {
+ _mouseTarget = value;
+ }
}
}