mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-26 05:26:45 +00:00
replace forward slash with underscore in file names when saving psbts
This commit is contained in:
parent
d731f7296b
commit
1e0c0c1c75
2 changed files with 2 additions and 1 deletions
|
@ -798,6 +798,7 @@ public class AppController implements Initializable {
|
||||||
|
|
||||||
String fileName = ((Label)selectedTab.getGraphic()).getText();
|
String fileName = ((Label)selectedTab.getGraphic()).getText();
|
||||||
if(fileName != null && !fileName.isEmpty()) {
|
if(fileName != null && !fileName.isEmpty()) {
|
||||||
|
fileName = fileName.replace('/', '_');
|
||||||
if(!fileName.endsWith(".psbt")) {
|
if(!fileName.endsWith(".psbt")) {
|
||||||
fileName += ".psbt";
|
fileName += ".psbt";
|
||||||
}
|
}
|
||||||
|
|
|
@ -993,7 +993,7 @@ public class HeadersController extends TransactionFormController implements Init
|
||||||
fileChooser.setTitle("Save PSBT");
|
fileChooser.setTitle("Save PSBT");
|
||||||
|
|
||||||
if(headersForm.getName() != null && !headersForm.getName().isEmpty()) {
|
if(headersForm.getName() != null && !headersForm.getName().isEmpty()) {
|
||||||
fileChooser.setInitialFileName(headersForm.getName() + ".psbt");
|
fileChooser.setInitialFileName(headersForm.getName().replace('/', '_') + ".psbt");
|
||||||
}
|
}
|
||||||
|
|
||||||
AppServices.moveToActiveWindowScreen(window, 800, 450);
|
AppServices.moveToActiveWindowScreen(window, 800, 450);
|
||||||
|
|
Loading…
Reference in a new issue