With debug
This commit is contained in:
parent
6d4bed20a9
commit
c78fdcdf12
2 changed files with 3 additions and 2 deletions
|
@ -73,8 +73,10 @@ public class NxdtController implements Initializable {
|
|||
dc.setTitle(rb.getString("tabSplMrg_Btn_SelectFolder"));
|
||||
dc.setInitialDirectory(new File(saveToLocationLbl.getText()));
|
||||
File saveToDir = dc.showDialog(saveToLocationLbl.getScene().getWindow());
|
||||
if (saveToDir != null)
|
||||
if (saveToDir != null) {
|
||||
saveToLocationLbl.setText(saveToDir.getAbsolutePath());
|
||||
statusLbl.setText("FreeSpace: "+saveToDir.getParentFile().getFreeSpace()); //TODO:REMOVE DEBUG
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Start reading commands from NXDT button handler
|
||||
|
|
|
@ -31,7 +31,6 @@ import java.nio.ByteBuffer;
|
|||
import java.nio.ByteOrder;
|
||||
import java.nio.IntBuffer;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.Arrays;
|
||||
|
||||
class NxdtUsbAbi1 {
|
||||
|
|
Loading…
Reference in a new issue