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 29a62b6 commit 0b67fd6Copy full SHA for 0b67fd6
mode/src/processing/mode/android/SDKDownloader.java
@@ -696,6 +696,7 @@ private void createInitLayout(SDKUrlHolder downloadUrls) {
696
@Override
697
public void actionPerformed(ActionEvent e) {
698
JFileChooser fc = new JFileChooser();
699
+ fc.setCurrentDirectory(processing.app.Base.getSketchbookFolder());
700
fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
701
fc.showOpenDialog(SDKDownloader.super.rootPane); //To put it on top of the modalDialog
702
if(fc.getSelectedFile()!=null) locationLabel.setText(fc.getSelectedFile().getAbsolutePath());
0 commit comments