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 c8c0361 commit 136f9abCopy full SHA for 136f9ab
app/src/processing/app/Editor.java
@@ -50,6 +50,7 @@
50
import java.util.zip.*;
51
52
import javax.swing.*;
53
+import javax.swing.border.EmptyBorder;
54
import javax.swing.event.*;
55
import javax.swing.text.*;
56
import javax.swing.undo.*;
@@ -268,6 +269,7 @@ public void windowDeactivated(WindowEvent e) {
268
269
270
// RTextScrollPane
271
scrollPane = new RTextScrollPane(textarea, true);
272
+ scrollPane.setBorder(new EmptyBorder(0, 0, 0, 0));
273
scrollPane.setViewportBorder(BorderFactory.createEmptyBorder());
274
scrollPane.setLineNumbersEnabled(Preferences.getBoolean("editor.linenumbers"));
275
scrollPane.setIconRowHeaderEnabled(false);
0 commit comments