How to increase line height in NetBeans 7?

In Apache Netbeans 14,

I was installed it via .sh file

I figure out how to change/add editor custom preferences as well open

/home/username/.netbeans/14/config/Editors/Preferences/

and open

org-netbeans-modules-editor-settings-CustomPreferences.xml

then add a new entry

<entry javaType="java.lang.Float" name="line-height-correction" xml:space="preserve">  
    <value><![CDATA[1.5]]></value>  
</entry>

Have a nice edit.


Here you go,

  1. Find org-netbeans-modules-editor-settings-CustomPreferences.xml in ~/.netbeans/x.x/config/Editors/Preferences where x.x is your netbeans version.
  2. Add this xml markup just above </editor-preferences> or anywhere if you know what you doing.
<entry javaType="java.lang.Float" name="line-height-correction" xml:space="preserve">  
    <value><![CDATA[1.4]]></value>  
</entry>

Tags:

Css

Netbeans