Re: Font scaling on High Res displays

2020-06-25 Thread Laszlo Kishalmi
What is the NetBeans version you are using and what is the runtime JDK 
for it?


On 6/25/20 9:47 PM, Jeff wrote:
I got a new Dell Precision 5540 laptop through work that is running a 
native resolution of 3840 x 2160 on a 15" screen.  Windows defaults to 
250% scaling to make text and icons readable at this resolution.


However, Netbeans project/source views don't seem to detect/honor the 
scaling settings and it is literally unreadable except with a 
magnifying glass.   The tool bar seems to honor the system 
scaling/font settings.  I can also change the editor text size but it 
does nothing for the project/Files/Services view nor the output/debug 
windows.


Enabling "Maximize use of native look and feel" didn't help.  Is there 
another setting I'm missing or do I just need to change the resolution?


Thanks!


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Font scaling on High Res displays

2020-06-25 Thread Jeff
I got a new Dell Precision 5540 laptop through work that is running a
native resolution of 3840 x 2160 on a 15" screen.  Windows defaults to 250%
scaling to make text and icons readable at this resolution.

However, Netbeans project/source views don't seem to detect/honor the
scaling settings and it is literally unreadable except with a magnifying
glass.   The tool bar seems to honor the system scaling/font settings.  I
can also change the editor text size but it does nothing for the
project/Files/Services view nor the output/debug windows.

Enabling "Maximize use of native look and feel" didn't help.  Is there
another setting I'm missing or do I just need to change the resolution?

Thanks!


Re: Help in setting up JavaFX on NB 12 and OpenBeans 12

2020-06-25 Thread slipbits
I know this is going to sound tacky,, but I have an IDE. Two of them in 
fact. Why would I try to do all this work by hand? Sigh.


I'm getting their but gradle says that JAVA_HOME is not set correctly. I 
just can't stand the fun.


Where is "preferences"? I've looked all over the blasted IDE, and I even 
looked at my NB 8.2 IDE and can't find it (except in NB 8.2 makefile). 
Now I know it's somewhere. ... Nope. I lost it again.


art

On 6/25/2020 3:18 PM, Scott Palmer wrote:

Set the path to Gradle in the NetBeans preferences/options.
If you are using the Gradle wrapper then Gradle will use the version 
specified by the project which it will download and cache in the 
.gradle folder of your home directory.


Have you tried building the project from the command line?

Scott


On Jun 25, 2020, at 5:15 PM, slipbits  wrote:



Win 7-64 & cygwin

Tried it on NB 12. Failed.

The build message says "Could not run build action using 
.gradle/.../gradle-6.3".


I have JavaFX installed @ /Program File/JavaFX /javafx-sdk-14.0.1  
(openJFX)


I have java installed @ /Program File/Java/jdk-14.0.1     
    (oracle)


I have Gradle installed @ /ProgramFile/Gradle/gradle-6.5    
   (gradle.org)


However, I don't have any way to tell NB 12 that I have installed 
JavaFX or Gradle. So, NB and OpenBeans installed something (let's 
call it Gradle) @ /../AppData/Local/NetBeans/Cache/12.0/gradle and 
/../AppData/Local/OpenBeans/Cache/2019.12/gradle and at 
/c/user/.../.gradle. None of this appears to be gradle.


That's everything I know. I did try to follow the instructions and 
did modify the build.gradle file. The modified file is:


apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'application'


mainClassName = 'HelloWorld.Main'

repositories {
    jcenter()
}

dependencies {
    testImplementation 'junit:junit:4.13'
}

plugins {
  id 'application'
  id 'org.openjfx.javafxplugin' version '0.0.8'
}

javafx {
    version = "14"
    modules = [ 'javafx.controls' ]
}

I tried several versions of adding an "apply plugin:" for JavaFX 
without success. Don't know what else to do.


thanks
art


On 6/25/2020 9:53 AM, Scott Palmer wrote:


On Thu, Jun 25, 2020 at 5:27 PM slipbits > wrote:


Under Java with Maven I see "FXML JavaFX Maven Archetype
(Gluon)" and "Simple JavaFX Maven Archteype (Gluon)". I suspect
one of these should be chosen. The book I'm reading, JavaFX 8
by Example, recommends Java with Gradle. Any idea when that
will be ready?




Java with Gradle works now.  Make a new Gradle project, then edit 
build.gradle to include the javafx plugin as per the Gradle examples 
on OpenJFX.io 


https://openjfx.io/openjfx-docs/#gradle
https://github.com/openjfx/samples/blob/master/HelloFX/Gradle/hellofx/build.gradle

Regards,

Scott


Re: Help in setting up JavaFX on NB 12 and OpenBeans 12

2020-06-25 Thread Scott Palmer
Set the path to Gradle in the NetBeans preferences/options. 
If you are using the Gradle wrapper then Gradle will use the version specified 
by the project which it will download and cache in the .gradle folder of your 
home directory. 

Have you tried building the project from the command line? 

Scott

> On Jun 25, 2020, at 5:15 PM, slipbits  wrote:
> 
> 
> Win 7-64 & cygwin
> 
> Tried it on NB 12. Failed. 
> 
> The build message says "Could not run build action using 
> .gradle/.../gradle-6.3". 
> 
> I have JavaFX installed @ /Program File/JavaFX /javafx-sdk-14.0.1  (openJFX)
> 
> I have java installed @ /Program File/Java/jdk-14.0.1
> (oracle)
> 
> I have Gradle installed @ /ProgramFile/Gradle/gradle-6.5   
> (gradle.org)
> 
> However, I don't have any way to tell NB 12 that I have installed JavaFX or 
> Gradle. So, NB and OpenBeans installed something (let's call it Gradle) @ 
> /../AppData/Local/NetBeans/Cache/12.0/gradle and 
> /../AppData/Local/OpenBeans/Cache/2019.12/gradle and at /c/user/.../.gradle. 
> None of this appears to be gradle.
> 
> That's everything I know. I did try to follow the instructions and did modify 
> the build.gradle file. The modified file is:
> 
> apply plugin: 'java'
> apply plugin: 'jacoco'
> apply plugin: 'application'
> 
> 
> mainClassName = 'HelloWorld.Main'
> 
> repositories {
> jcenter()
> }
> 
> dependencies {
> testImplementation 'junit:junit:4.13'
> }
> 
> plugins {
>   id 'application'
>   id 'org.openjfx.javafxplugin' version '0.0.8'
> }
> 
> javafx {
> version = "14"
> modules = [ 'javafx.controls' ]
> }
> 
> I tried several versions of adding an "apply plugin:" for JavaFX without 
> success. Don't know what else to do.
> 
> thanks
> art
> 
> 
> 
> On 6/25/2020 9:53 AM, Scott Palmer wrote:
>> 
>>> On Thu, Jun 25, 2020 at 5:27 PM slipbits  wrote:
 Under Java with Maven I see "FXML JavaFX Maven Archetype (Gluon)" and 
 "Simple JavaFX Maven Archteype (Gluon)". I suspect one of these should be 
 chosen. The book I'm reading, JavaFX 8 by Example, recommends Java with 
 Gradle. Any idea when that will be ready?
 
 
>> 
>> Java with Gradle works now.  Make a new Gradle project, then edit 
>> build.gradle to include the javafx plugin as per the Gradle examples on 
>> OpenJFX.io  
>> 
>> https://openjfx.io/openjfx-docs/#gradle
>> https://github.com/openjfx/samples/blob/master/HelloFX/Gradle/hellofx/build.gradle
>> 
>> Regards,
>> 
>> Scott


Re: Help in setting up JavaFX on NB 12 and OpenBeans 12

2020-06-25 Thread slipbits

Win 7-64 & cygwin

Tried it on NB 12. Failed.

The build message says "Could not run build action using 
.gradle/.../gradle-6.3".


I have JavaFX installed @ /Program File/JavaFX /javafx-sdk-14.0.1  (openJFX)

I have java installed @ /Program File/Java/jdk-14.0.1     
(oracle)


I have Gradle installed @ /ProgramFile/Gradle/gradle-6.5    
(gradle.org)


However, I don't have any way to tell NB 12 that I have installed JavaFX 
or Gradle. So, NB and OpenBeans installed something (let's call it 
Gradle) @ /../AppData/Local/NetBeans/Cache/12.0/gradle and 
/../AppData/Local/OpenBeans/Cache/2019.12/gradle and at 
/c/user/.../.gradle. None of this appears to be gradle.


That's everything I know. I did try to follow the instructions and did 
modify the build.gradle file. The modified file is:


apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'application'


mainClassName = 'HelloWorld.Main'

repositories {
    jcenter()
}

dependencies {
    testImplementation 'junit:junit:4.13'
}

plugins {
  id 'application'
  id 'org.openjfx.javafxplugin' version '0.0.8'
}

javafx {
    version = "14"
    modules = [ 'javafx.controls' ]
}

I tried several versions of adding an "apply plugin:" for JavaFX without 
success. Don't know what else to do.


thanks
art


On 6/25/2020 9:53 AM, Scott Palmer wrote:


On Thu, Jun 25, 2020 at 5:27 PM slipbits > wrote:


Under Java with Maven I see "FXML JavaFX Maven Archetype (Gluon)"
and "Simple JavaFX Maven Archteype (Gluon)". I suspect one of
these should be chosen. The book I'm reading, JavaFX 8 by
Example, recommends Java with Gradle. Any idea when that will be
ready?




Java with Gradle works now.  Make a new Gradle project, then edit 
build.gradle to include the javafx plugin as per the Gradle examples 
on OpenJFX.io 


https://openjfx.io/openjfx-docs/#gradle
https://github.com/openjfx/samples/blob/master/HelloFX/Gradle/hellofx/build.gradle

Regards,

Scott


Gui Builder *form files not displayed in Explorers

2020-06-25 Thread Bilu
Hello,

Is there a reason why *form files are not displayed in NB Explorers? I
can understand those are not in the Project Tab as those are editable
with the GUI Builder but users should be able to work with them in the
Files or Favorites explorers.

In my case, for example i got some broken bundle references in them
after a refactor and need to fix them manually and was forced to use
another editor to Search and replace inside *form.






Re: Help in setting up JavaFX on NB 12 and OpenBeans 12

2020-06-25 Thread Scott Palmer

> On Thu, Jun 25, 2020 at 5:27 PM slipbits  > wrote:
> Under Java with Maven I see "FXML JavaFX Maven Archetype (Gluon)" and "Simple 
> JavaFX Maven Archteype (Gluon)". I suspect one of these should be chosen. The 
> book I'm reading, JavaFX 8 by Example, recommends Java with Gradle. Any idea 
> when that will be ready?
> 
> 

Java with Gradle works now.  Make a new Gradle project, then edit build.gradle 
to include the javafx plugin as per the Gradle examples on OpenJFX.io  

https://openjfx.io/openjfx-docs/#gradle
https://github.com/openjfx/samples/blob/master/HelloFX/Gradle/hellofx/build.gradle

Regards,

Scott

Re: Help in setting up JavaFX on NB 12 and OpenBeans 12

2020-06-25 Thread Geertjan Wielenga
You're going to need to write to the mailing list, please. Not to me.

Indeed, use exactly one of those two samples. You're learning about JavaFX,
it doesn't matter what build system you use.

Gj

On Thu, Jun 25, 2020 at 5:27 PM slipbits  wrote:

> Under Java with Maven I see "FXML JavaFX Maven Archetype (Gluon)" and
> "Simple JavaFX Maven Archteype (Gluon)". I suspect one of these should be
> chosen. The book I'm reading, JavaFX 8 by Example, recommends Java with
> Gradle. Any idea when that will be ready?
>
> Should this issue be reported as a bug?
> On 6/25/2020 8:12 AM, Geertjan Wielenga wrote:
>
>
> It is also available under “Java with Maven”.
>
> Gj
>
> On Thu, 25 Jun 2020 at 17:11, slipbits  wrote:
>
>> Can't do it (different idea then "won't do it"). JavaFX  seems to be
>> exclusively available under Ant. In order to create a new JavaFX project I
>> must do: Files->New Project->Java with Ant->JavaFX. This is on both NB
>> 12 and OpenBeans.
>>
>> art
>> On 6/24/2020 8:20 PM, Geertjan Wielenga wrote:
>>
>> Can you consider using Maven instead of Ant? Then everything works out of
>> the box.
>>
>> Gj
>>
>> On Thu, 25 Jun 2020 at 01:59, slipbits  wrote:
>>
>>> Win 10-64
>>>
>>> I've installed the JavaFX plugins and now I'm trying to create an
>>> application.  When I do:
>>>
>>> File->New Projects->Java with Ant->JavaFX->JavaFX Application
>>>
>>> I get a message: "Failed to automatically set-up a JavaFX Platform.
>>> Please go to Platform Manager, create a non-default Java SE platform, then 
>>> go to the JavaFX tab,
>>> enable JavaFX and fill in the paths to valid JavaFX SDK and JavaFX Runtime.
>>> Note: JavaFX SDK can be downloaded from JavaFX website."
>>>
>>> Using "Manage Platforms" I have set up a non-default Java SE Platform.
>>> There is no JavaFX tab in the Java Platforms pop-up.  I'm stumped.
>>>
>>> I did get it going (somehow) on my Win-7 system.
>>>
>>> Where is the "JavaFX tab"?
>>>
>>


Re: Netbeans, JSF and Entity classes from database

2020-06-25 Thread Charles Johnson

On 25/06/2020 12:21, Josh Juneau wrote:
With respect to your questions pertaining to the Java Persistence API 
(JPA), you many want to try the Jeddict plugin and see if that helps. 


Thanks Josh. Shall take a look at that

C


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Help in setting up JavaFX on NB 12 and OpenBeans 12

2020-06-25 Thread Geertjan Wielenga
You will find the two OpenJFX Gluon Maven archetypes around midway down the
list in “Java with Maven”. They can be run and debugged out of the box and
there is nothing you need to install for this.

Gj

On Thu, 25 Jun 2020 at 17:12, Geertjan Wielenga  wrote:

>
> It is also available under “Java with Maven”.
>
> Gj
>
> On Thu, 25 Jun 2020 at 17:11, slipbits  wrote:
>
>> Can't do it (different idea then "won't do it"). JavaFX  seems to be
>> exclusively available under Ant. In order to create a new JavaFX project I
>> must do: Files->New Project->Java with Ant->JavaFX. This is on both NB
>> 12 and OpenBeans.
>>
>> art
>> On 6/24/2020 8:20 PM, Geertjan Wielenga wrote:
>>
>> Can you consider using Maven instead of Ant? Then everything works out of
>> the box.
>>
>> Gj
>>
>> On Thu, 25 Jun 2020 at 01:59, slipbits  wrote:
>>
>>> Win 10-64
>>>
>>> I've installed the JavaFX plugins and now I'm trying to create an
>>> application.  When I do:
>>>
>>> File->New Projects->Java with Ant->JavaFX->JavaFX Application
>>>
>>> I get a message: "Failed to automatically set-up a JavaFX Platform.
>>> Please go to Platform Manager, create a non-default Java SE platform, then 
>>> go to the JavaFX tab,
>>> enable JavaFX and fill in the paths to valid JavaFX SDK and JavaFX Runtime.
>>> Note: JavaFX SDK can be downloaded from JavaFX website."
>>>
>>> Using "Manage Platforms" I have set up a non-default Java SE Platform.
>>> There is no JavaFX tab in the Java Platforms pop-up.  I'm stumped.
>>>
>>> I did get it going (somehow) on my Win-7 system.
>>>
>>> Where is the "JavaFX tab"?
>>>
>>


Re: IDE look and feel

2020-06-25 Thread Laszlo Kishalmi
Norway Today is only an Editor Color Scheme which goes well with Dark 
Metal and Dark Nimbus Look and Feel (actually that is the default Editor 
color scheme for those Look and Feels)
And yes as Geertjan said it is on the Tools > Options > Appearance > 
Look and Feel tab. Happy NetBeansing!


On 6/24/20 11:36 PM, HRH wrote:

Hi,

I am using the "Norway Today" look and feel for the IDE 
(Tools->Options-> Font & Color-Profile->Norway Today), however, that 
only applies to the "Source" pane and all other panes (i.e Project, 
Navigator, etc.) remain unchanged. Any idea?


Thanks


Re: Help in setting up JavaFX on NB 12 and OpenBeans 12

2020-06-25 Thread Geertjan Wielenga
It is also available under “Java with Maven”.

Gj

On Thu, 25 Jun 2020 at 17:11, slipbits  wrote:

> Can't do it (different idea then "won't do it"). JavaFX  seems to be
> exclusively available under Ant. In order to create a new JavaFX project I
> must do: Files->New Project->Java with Ant->JavaFX. This is on both NB 12
> and OpenBeans.
>
> art
> On 6/24/2020 8:20 PM, Geertjan Wielenga wrote:
>
> Can you consider using Maven instead of Ant? Then everything works out of
> the box.
>
> Gj
>
> On Thu, 25 Jun 2020 at 01:59, slipbits  wrote:
>
>> Win 10-64
>>
>> I've installed the JavaFX plugins and now I'm trying to create an
>> application.  When I do:
>>
>> File->New Projects->Java with Ant->JavaFX->JavaFX Application
>>
>> I get a message: "Failed to automatically set-up a JavaFX Platform.
>> Please go to Platform Manager, create a non-default Java SE platform, then 
>> go to the JavaFX tab,
>> enable JavaFX and fill in the paths to valid JavaFX SDK and JavaFX Runtime.
>> Note: JavaFX SDK can be downloaded from JavaFX website."
>>
>> Using "Manage Platforms" I have set up a non-default Java SE Platform.
>> There is no JavaFX tab in the Java Platforms pop-up.  I'm stumped.
>>
>> I did get it going (somehow) on my Win-7 system.
>>
>> Where is the "JavaFX tab"?
>>
>


Re: Netbeans, JSF and Entity classes from database

2020-06-25 Thread Josh Juneau
Hi Charles,

Thanks for utilizing the JSF features of Apache NetBeans.  With respect to
your questions pertaining to the Java Persistence API (JPA), you many want
to try the Jeddict plugin and see if that helps.  This plugin was generated
to allow visual creation of entity classes and entity class relationships.

https://jeddict.github.io/

Hope this helps.  Thanks

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau




On Tue, Jun 23, 2020 at 5:04 PM Charles Johnson 
wrote:

> I departed from usual suspicion of using IDEs to generate stuff for me
> automatically and went for the above.
> That worked out OK, although the 'black-boxishness' of it makes
> extending the (admittedly quite full-featured) result tricky.
>
> One thing that is currently exercising me is to treat the entity
> relationships between my Job and Client classes. It's my business case
> the there is a one-to-one unidirectional relationship there.
> Is there a way to tap into that 'internally' or do i need to construct
> it myself.
> e.g. i create a new Job through my gui. The field that comes up in the
> form is 'ClientID' (a foreign key). I'd like to leverage the Client
> objects there by name, since i don't know the client id off the top of
> my head. To what extent has the work been done already by Netbeans?
>
> TIA
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


Re: How to use the new FlatLaf look & feel in a Netbeans application ?

2020-06-25 Thread Jerome Lelasseux
 Understood, thanks for the links!

Le jeudi 25 juin 2020 à 10:08:55 UTC+2, Neil C Smith 
 a écrit :  
 
 On Thu, 25 Jun 2020 at 00:40, Laszlo Kishalmi  
wrote:
> NbPreferences.root().node( "laf" ).put( "laf", 
> "com.formdev.flatlaf.FlatDarkLaf" ); Somewhere really early, probably at an 
> @OnStart marked runnable.

This probably needs to be done in ModuleInstall::validate - @OnStart
is too late to work consistently, unless behaviour has changed
recently.

You can see use of validate() in eg.
https://github.com/Revivius/nb-darcula/blob/master/src/main/java/com/revivius/nb/darcula/Installer.java#L29
and 
https://github.com/praxis-live/praxis-live/blob/v2.3.3/praxis.live.laf/src/net/neilcsmith/praxis/live/laf/Installer.java#L53

Best wishes,

Neil

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

  

Re: IDE look and feel

2020-06-25 Thread HRH
 Thanks.

On Thursday, June 25, 2020, 11:09:51 AM GMT+4:30, Geertjan Wielenga 
 wrote:  
 
 
Yes, that applies only to the source editor.
To change the appearance of the IDE as a whole, switch the look and feel in the 
Appearance tab.
Gj
On Thu, 25 Jun 2020 at 08:37, HRH  wrote:

Hi,
I am using the "Norway Today" look and feel for the IDE (Tools->Options-> Font 
& Color-Profile->Norway Today), however, that only applies to the "Source" pane 
and all other panes (i.e Project, Navigator, etc.) remain unchanged. Any idea?
Thanks

  

Re: How to use the new FlatLaf look & feel in a Netbeans application ?

2020-06-25 Thread Neil C Smith
On Thu, 25 Jun 2020 at 00:40, Laszlo Kishalmi  wrote:
> NbPreferences.root().node( "laf" ).put( "laf", 
> "com.formdev.flatlaf.FlatDarkLaf" ); Somewhere really early, probably at an 
> @OnStart marked runnable.

This probably needs to be done in ModuleInstall::validate - @OnStart
is too late to work consistently, unless behaviour has changed
recently.

You can see use of validate() in eg.
https://github.com/Revivius/nb-darcula/blob/master/src/main/java/com/revivius/nb/darcula/Installer.java#L29
and 
https://github.com/praxis-live/praxis-live/blob/v2.3.3/praxis.live.laf/src/net/neilcsmith/praxis/live/laf/Installer.java#L53

Best wishes,

Neil

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: How to use the new FlatLaf look & feel in a Netbeans application ?

2020-06-25 Thread Jerome Lelasseux
 Thanks, it works. 

Le jeudi 25 juin 2020 à 01:40:03 UTC+2, Laszlo Kishalmi 
 a écrit :  
 
  
Right now Flatlaf is part of the platform, so it is available for the platform 
based applications as well.
 
If you would like to use it as default probably the best would be to add the 
call of:
 
NbPreferences.root().node( "laf" ).put( "laf", 
"com.formdev.flatlaf.FlatDarkLaf" ); Somewhere really early, probably at an 
@OnStart marked runnable.
 
 On 6/24/20 3:07 PM, Jerome Lelasseux wrote:
  
 
 Hi, 
  I use NB 11.3 which includes the new FlatLaf dark look & feel. I can use it 
for the IDE, but how to use it in my Netbeans platform app ? 
  Jerome
 

Re: [PHP][Xdebug][macOS Mojave] config problems

2020-06-25 Thread John Lavelle
When you get the message:

*Error:*
*Browser refused to debug this tab.*
*Close Chrome Developer Tools (or any other browser debugger) and try
again.*

Press refresh on the browser and everything syncs correctly

Best regards,
John
j...@jql.co.uk

Bike Farkles: https://www.youtube.com/channel/UCPRV92Cf_R1ihviRtVU2teQ
JLavelle.uk https://www.youtube.com/jlavelleuk


On Thu, Jun 25, 2020 at 7:15 AM Andy Elster  wrote:

> I had that installed. I once again removed extra lines from my php.ini
> file, restarted Apache and now it mostly works. I now get the popup alert:
>
> Error:
> Browser refused to debug this tab.
> Close Chrome Developer Tools (or any other browser debugger) and try again.
>
> However, once I click OK, everything seems to work. In looking at
> chrome://extensions, I don't have any developer tools or debugger running.
> Curious, but I can now keep going.
>
> Not exactly what I added/removed this time, but I'll make sure not to
> touch it again :)
>
> Thanks.
>
> On Wed, Jun 24, 2020 at 9:36 PM Geertjan Wielenga 
> wrote:
>
>>
>> Well, you need to install the Chrome connector plugin, everything indeed
>> should work, this part of NetBeans has been fixed in 12.0.
>>
>> If you describe a step by step scenario here for someone to follow, so
>> we’re sure we’re doing the same thing, we can take a look.
>>
>> Gj
>>
>> On Thu, 25 Jun 2020 at 06:25, Andy Elster  wrote:
>>
>>> I recently switched from Netbeans to Apache Netbeans and debugging is
>>> now broken. From Netbeans the IDE used to pop up a Chrome window, now I
>>> can't seem to get anything to work. I've gone to xdebug.org but that
>>> hasn't seemed to help.
>>>
>>> Anybody out there able to debug local PHP code using Apache Netbeans
>>> 12.0 on a MacBook Pro?
>>>
>>>
>>> - Andy
>>>
>>


Re: IDE look and feel

2020-06-25 Thread Geertjan Wielenga
Yes, that applies only to the source editor.

To change the appearance of the IDE as a whole, switch the look and feel in
the Appearance tab.

Gj

On Thu, 25 Jun 2020 at 08:37, HRH  wrote:

> Hi,
>
> I am using the "Norway Today" look and feel for the IDE (Tools->Options->
> Font & Color-Profile->Norway Today), however, that only applies to the
> "Source" pane and all other panes (i.e Project, Navigator, etc.) remain
> unchanged. Any idea?
>
> Thanks
>


IDE look and feel

2020-06-25 Thread HRH
Hi,
I am using the "Norway Today" look and feel for the IDE (Tools->Options-> Font 
& Color-Profile->Norway Today), however, that only applies to the "Source" pane 
and all other panes (i.e Project, Navigator, etc.) remain unchanged. Any idea?
Thanks