Skip to content

Commit 91db900

Browse files
committed
working on ui, update Java version
1 parent a39db24 commit 91db900

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

app/src/processing/app/ui/EditorFooter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ public class EditorFooter extends Box {
5555
// amount of extra space between individual tabs
5656
static final int TAB_BETWEEN = 2;
5757
// amount of margin on the left/right for the text on the tab
58-
static final int MARGIN = 10;
58+
static final int MARGIN = 14;
5959

6060
static final int ICON_WIDTH = 16;
6161
static final int ICON_HEIGHT = 16;
6262
static final int ICON_TOP = 7;
63-
static final int ICON_MARGIN = 8;
63+
static final int ICON_MARGIN = 7;
6464

6565
Color[] textColor = new Color[2];
6666
Color[] tabColor = new Color[2];

build/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
-->
6565
<!-- Switching to 8 because updates for 7 ended April 2015 -->
6666
<property name="jdk.version" value="8" />
67-
<property name="jdk.update" value="51" />
68-
<property name="jdk.build" value="16" />
67+
<property name="jdk.update" value="60" />
68+
<property name="jdk.build" value="27" />
6969
<property name="jdk.short" value="${jdk.version}u${jdk.update}" />
7070
<property name="jdk.esoteric" value="1.${jdk.version}.0_${jdk.update}" />
7171

java/src/processing/mode/java/pdex/JavaTextArea.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ public JavaTextArea(TextAreaDefaults defaults, JavaEditor editor) {
136136
gutterLineColor = mode.getColor("gutter.linecolor"); //, gutterLineColor);
137137
gutterPadding = mode.getInteger("gutter.padding");
138138
breakpointMarker = mode.getString("breakpoint.marker"); //, breakpointMarker);
139+
// breakpointMarker = "\u2666";
139140
currentLineMarker = mode.getString("currentline.marker"); //, currentLineMarker);
140141

141142
// TweakMode code

0 commit comments

Comments
 (0)