This is an automated email from the ASF dual-hosted git repository.
mbien pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git
The following commit(s) were added to refs/heads/master by this push:
new 8b96d9f2de [NETBEANS-5327] Added Open in System option under rigth
click-->Tools Menu
new 8d5eedb6f8 Merge pull request #5770 from Tnnienn/tnniennbranck
8b96d9f2de is described below
commit 8b96d9f2de58ad40366b5489e120ceffe1fb7532
Author: Antonio Fasanella <[email protected]>
AuthorDate: Sun Apr 16 18:08:46 2023 +0200
[NETBEANS-5327] Added Open in System option under rigth click-->Tools Menu
---
.../core.ui/src/org/netbeans/core/ui/sysopen/SystemOpenAction.java | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git
a/platform/core.ui/src/org/netbeans/core/ui/sysopen/SystemOpenAction.java
b/platform/core.ui/src/org/netbeans/core/ui/sysopen/SystemOpenAction.java
index 94b2efbee2..406235407c 100644
--- a/platform/core.ui/src/org/netbeans/core/ui/sysopen/SystemOpenAction.java
+++ b/platform/core.ui/src/org/netbeans/core/ui/sysopen/SystemOpenAction.java
@@ -31,6 +31,7 @@ import javax.swing.AbstractAction;
import javax.swing.Action;
import org.openide.awt.ActionID;
import org.openide.awt.ActionReference;
+import org.openide.awt.ActionReferences;
import org.openide.awt.ActionRegistration;
import org.openide.awt.DynamicMenuContent;
import org.openide.filesystems.FileUtil;
@@ -47,7 +48,10 @@ import org.openide.util.Utilities;
*/
@ActionID(id = "org.netbeans.core.ui.sysopen.SystemOpenAction", category =
"Edit")
@ActionRegistration(displayName = "#CTL_SystemOpenAction", lazy=false)
-@ActionReference(path = "Loaders/content/unknown/Actions", position = 200)
+@ActionReferences ({
+ @ActionReference(path = "UI/ToolActions/Files", position = 2045),
+ @ActionReference(path = "Projects/Actions", position = 101)
+})
public final class SystemOpenAction extends AbstractAction implements
ContextAwareAction {
private static final RequestProcessor PROC = new
RequestProcessor(SystemOpenAction.class);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists