From bc9ff64c40a3e39b705f9fb141a63fc5c014b930 Mon Sep 17 00:00:00 2001 From: Chirag Manwani Date: Thu, 18 Feb 2016 16:58:24 +0530 Subject: tdf#97637 Fixed Tab size of beanshell editor to 4 Change-Id: Ifeb73ab210d9d955e502fab3e3ec993081625945 Reviewed-on: https://gerrit.libreoffice.org/22473 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt Tested-by: Samuel Mehrbrodt --- .../sun/star/script/framework/provider/beanshell/PlainSourceView.java | 1 + 1 file changed, 1 insertion(+) (limited to 'scripting/java') diff --git a/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java b/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java index 916234af939d..5f11a6e319ae 100644 --- a/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java +++ b/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java @@ -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); -- cgit