mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-23 03:59:29 +00:00
WalletInfoDialog: fix open wallet directory on macOS
This commit is contained in:
parent
03f484c2ae
commit
01966df866
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ WalletInfoDialog::WalletInfoDialog(AppContext *ctx, QWidget *parent)
|
||||||
void WalletInfoDialog::openWalletDir() {
|
void WalletInfoDialog::openWalletDir() {
|
||||||
QFileInfo file(m_ctx->walletPath);
|
QFileInfo file(m_ctx->walletPath);
|
||||||
|
|
||||||
QDesktopServices::openUrl(file.absolutePath());
|
QDesktopServices::openUrl(QUrl(QString("file://%1").arg(file.absolutePath()), QUrl::TolerantMode));
|
||||||
}
|
}
|
||||||
|
|
||||||
WalletInfoDialog::~WalletInfoDialog() {
|
WalletInfoDialog::~WalletInfoDialog() {
|
||||||
|
|
Loading…
Reference in a new issue