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 2ec7a02 commit 5eca70bCopy full SHA for 5eca70b
app/src/processing/app/Editor.java
@@ -47,6 +47,7 @@
47
import java.util.zip.*;
48
49
import javax.swing.*;
50
+import javax.swing.border.EmptyBorder;
51
import javax.swing.event.*;
52
import javax.swing.text.*;
53
import javax.swing.undo.*;
@@ -255,6 +256,7 @@ public void windowDeactivated(WindowEvent e) {
255
256
257
// RTextScrollPane
258
scrollPane = new RTextScrollPane(textarea, true);
259
+ scrollPane.setBorder(new EmptyBorder(0, 0, 0, 0));
260
scrollPane.setViewportBorder(BorderFactory.createEmptyBorder());
261
scrollPane.setLineNumbersEnabled(Preferences.getBoolean("editor.linenumbers"));
262
scrollPane.setIconRowHeaderEnabled(false);
0 commit comments