Skip to content

Commit 47ebf66

Browse files
committed
Horizontal scrollbar fix to close issue 316
1 parent a5c3b6e commit 47ebf66

3 files changed

Lines changed: 480 additions & 473 deletions

File tree

app/src/processing/app/Editor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public void windowDeactivated(WindowEvent e) {
181181

182182
textarea = new JEditTextArea(new PdeTextAreaDefaults());
183183
textarea.setRightClickPopup(new TextAreaPopup());
184-
textarea.setHorizontalOffset(6);
184+
textarea.setHorizontalOffset(JEditTextArea.leftHandGutter);
185185

186186
// assemble console panel, consisting of status area and the console itself
187187
consolePanel = new JPanel();

app/src/processing/app/WebServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class WebServer implements HttpConstants {
1919

2020
/* Where worker threads stand idle */
2121
static Vector threads = new Vector();
22-
22+
2323
/* the web server's virtual root */
2424
//static File root;
2525

0 commit comments

Comments
 (0)