Skip to content

Commit 1cc884f

Browse files
authored
Merge pull request #2965 from input-output-hk/fix/DDW-783-keep-dialog-open-after-qr-code-and-pdf-save
2 parents 97d7693 + 99f1a32 commit 1cc884f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
### Fixes
1515

16+
- Fixed dialogs being closed after receiving address shared ([PR 2965](https://github.com/input-output-hk/daedalus/pull/2965))
1617
- Fixed no progress shown on loading screen on Windows ([PR 2967](https://github.com/input-output-hk/daedalus/pull/2967))
1718
- Fixes hardware wallet issues on Windows ([PR 2900](https://github.com/input-output-hk/daedalus/pull/2900))
1819
- Fixed stake pool list styling ([PR 2920](https://github.com/input-output-hk/daedalus/pull/2920))

source/renderer/app/containers/wallet/WalletReceivePage.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ class WalletReceivePage extends Component<Props, State> {
138138
const { address, filePath } = await this.getAddressAndFilepath();
139139
// if cancel button is clicked or path is empty
140140
if (!filePath || !address) return;
141-
this.handleCloseShareAddress();
142141
this.props.actions.wallets.generateAddressPDF.trigger({
143142
note,
144143
address,
@@ -149,7 +148,6 @@ class WalletReceivePage extends Component<Props, State> {
149148
const { address, filePath } = await this.getAddressAndFilepath('png');
150149
// if cancel button is clicked or path is empty
151150
if (!filePath || !address) return;
152-
this.handleCloseShareAddress();
153151
this.props.actions.wallets.saveQRCodeImage.trigger({
154152
address,
155153
filePath,

0 commit comments

Comments
 (0)