Re: Netbeans installer on macOS Big Sur can't find JDK

2020-12-22 Thread Franck Arnulfo
I've got the same issue: Netbeans 12.2 installer can't find JDK on macOS BigSur with JDK installed with SDKMAN. [image: image.png] Java is correctly installed, even the /usr/libexec/java_home is correct : farnulfo@MacBook-Pro ~ % java -version openjdk version "11.0.9.1" 2020-11-04 OpenJDK

Re: [netbeans-platform] programmatically call "Show Only Editor" on startup

2020-12-22 Thread Jerome Lelasseux
What error do you get ? Le mardi 22 décembre 2020 à 22:32:23 UTC+1, Ralf Eichinger a écrit : I tried @Override   public void componentOpened() {     Action action = FileUtil.getConfigObject("Actions/Window/org-netbeans-core-windows-actions-ShowEditorOnlyAction.instance",

Re: [netbeans-platform] programmatically call "Show Only Editor" on startup

2020-12-22 Thread Ralf Eichinger
I tried @Override public void componentOpened() { Action action = FileUtil.getConfigObject("Actions/Window/org-netbeans-core-windows-actions-ShowEditorOnlyAction.instance", Action.class); action.actionPerformed(new ActionEvent(this, 0, "dummy")); } in my TopComponent class of my

Re: [netbeans-platform] programmatically call "Show Only Editor" on startup

2020-12-22 Thread Patrik Karlström
Better yet, don't use tabs! https://blogs.oracle.com/geertjan/farewell-to-space-consuming-weird-tabs aka NoTabsTabDisplayerUI Den mån 21 dec. 2020 kl 14:18 skrev Ralf Eichinger : > > I am developing a netbeans RELEASE90 platform based application. > all gui is placed in editor area. > Is there