You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by pu...@apache.org on 2021/09/18 15:14:27 UTC

[royale-asjs] branch develop updated: Added mouseTarget in ContextMenuEvent.as

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 <pa...@gmail.com>
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;
+		}
 	}
 }