We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14a0b45 commit bb74e06Copy full SHA for bb74e06
app/src/processing/app/Editor.java
@@ -46,6 +46,7 @@
46
import java.util.zip.*;
47
48
import javax.swing.*;
49
+import javax.swing.border.EmptyBorder;
50
import javax.swing.event.*;
51
import javax.swing.text.*;
52
import javax.swing.undo.*;
@@ -264,6 +265,7 @@ public void windowDeactivated(WindowEvent e) {
264
265
266
// RTextScrollPane
267
scrollPane = new RTextScrollPane(textarea, true);
268
+ scrollPane.setBorder(new EmptyBorder(0, 0, 0, 0));
269
scrollPane.setViewportBorder(BorderFactory.createEmptyBorder());
270
scrollPane.setLineNumbersEnabled(Preferences.getBoolean("editor.linenumbers"));
271
scrollPane.setIconRowHeaderEnabled(false);
0 commit comments