Issue
I found a hack how to increase it in 6.9, but it does not work in NetBeans 7. Is there any way to increase the space between the lines in ver. 7? Please help, googled it too - no info about it :/
Solution
- Find
org-netbeans-modules-editor-settings-CustomPreferences.xml
in~/.netbeans/x.x/config/Editors/Preferences
wherex.x
is your netbeans version. - 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>
Answered By - pengemizt
Answer Checked By - Pedro (JavaFixing Volunteer)