tdf#97637 Fixed Tab size of beanshell editor to 4

Change-Id: Ifeb73ab210d9d955e502fab3e3ec993081625945
Reviewed-on: https://gerrit.libreoffice.org/22473
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
This commit is contained in:
Chirag Manwani
2016-02-18 16:58:24 +05:30
committed by Samuel Mehrbrodt
parent 03b1cc800e
commit bc9ff64c40

View File

@@ -101,6 +101,7 @@ public class PlainSourceView extends JScrollPane implements
// What to do here
}
ta = new JTextArea();
ta.setTabSize(4);
ta.setRows(15);
ta.setColumns(40);
ta.setLineWrap(false);