Skip to content

Commit 75cbe52

Browse files
committedDec 5, 2020
Project View V1.0
1 parent 32e4374 commit 75cbe52

File tree

732 files changed

+1131
-338601
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

732 files changed

+1131
-338601
lines changed
 

‎app/src/processing/app/Editor.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1665,7 +1665,7 @@ public void addLineHighlight(int line) throws BadLocationException {
16651665
}
16661666
}
16671667
}
1668-
textArea.addLineHighlight(line, new Color(0, 0, 255, 0.2f));
1668+
textArea.addLineHighlight(line, new Color(1, 0, 0, 0.2f));
16691669
textArea.setCaretPosition(textArea.getLineStartOffset(line));
16701670
}
16711671

@@ -2623,7 +2623,7 @@ public void handleAddProjectView(){
26232623
// Split the code and project View
26242624
splitProject = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, project, editor_upper);
26252625
splitProject.setContinuousLayout(true);
2626-
splitProject.setResizeWeight(0.25);
2626+
splitProject.setResizeWeight(0.10f);
26272627
middle.add(splitProject);
26282628

26292629
// Pack the frame

‎app/src/processing/app/EditorProject.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public void actionPerformed(ActionEvent e) {
120120
jDialog.pack();
121121
jDialog.setLocationRelativeTo(null);
122122
jDialog.setVisible(true);*/
123-
NavigateDialog navigateDialog = new NavigateDialog(new File("/home/sami/"), fileRoot);
123+
NavigateDialog navigateDialog = new NavigateDialog(new File(System.getProperty("user.home")), fileRoot, this);
124124
}
125125

126126

0 commit comments

Comments
 (0)