Skip to content

Commit 50dd673

Browse files
committed
Fixed navigate dialog
1 parent 4934b77 commit 50dd673

File tree

138 files changed

+20921
-4652
lines changed

Some content is hidden

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

138 files changed

+20921
-4652
lines changed

app/src/processing/app/EditorProject.java

+8-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ public class EditorProject extends JPanel {
2424

2525
private ProjectToolbar projectToolbar;
2626

27+
boolean navigating;
28+
2729

2830
public EditorProject(String path, Base base, Editor editor){
2931
this.setLayout(new BorderLayout());
@@ -120,7 +122,12 @@ public void actionPerformed(ActionEvent e) {
120122
jDialog.pack();
121123
jDialog.setLocationRelativeTo(null);
122124
jDialog.setVisible(true);*/
123-
NavigateDialog navigateDialog = new NavigateDialog(new File(System.getProperty("user.home")), fileRoot, this);
125+
if(!navigating) {
126+
NavigateDialog navigateDialog = new NavigateDialog(new File(System.getProperty("user.home")), fileRoot, this);
127+
navigating = true;
128+
}else{
129+
130+
}
124131
}
125132

126133

app/src/processing/app/tools/NavigateDialog.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,10 @@ public void actionPerformed(ActionEvent e) {
6363
@Override
6464
public void mouseClicked(MouseEvent e) {
6565
if(e.getSource() == this.getTree()){
66-
// Update the pathfield
67-
pathfield.setText(this.getSelectedFile().getAbsolutePath());
66+
if(this.getSelectedFile() != null) {
67+
// Update the pathfield
68+
pathfield.setText(this.getSelectedFile().getAbsolutePath());
69+
}
6870
}
6971
}
7072

app/src/processing/app/tools/jexplorer/JExplorerPanel.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
import javax.swing.tree.TreeSelectionModel;
4343

4444

45+
import processing.app.I18n;
4546
import processing.app.tools.jexplorer.FileTreeModel.FileTreeNode;
4647
import processing.app.tools.jexplorer.utils.Translate;
4748
import processing.app.tools.jexplorer.utils.LimitedQueue;
@@ -343,7 +344,7 @@ private JMenuItem addMenu(String title, KeyStroke keyStroke, ActionListener acti
343344
* Handle translation
344345
*/
345346
protected String tr(String name) {
346-
return name;
347+
return I18n.tr(name);
347348
}
348349

349350
protected void log(String message) {

0 commit comments

Comments
 (0)