mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
Trezor: fix splashdialog hide on pin cancel
This commit is contained in:
parent
4b747bf163
commit
f2a72c342e
3 changed files with 11 additions and 5 deletions
|
@ -22,6 +22,7 @@ WindowManager::WindowManager() {
|
|||
connect(m_walletManager, &WalletManager::walletOpened, this, &WindowManager::onWalletOpened);
|
||||
connect(m_walletManager, &WalletManager::walletCreated, this, &WindowManager::onWalletCreated);
|
||||
connect(m_walletManager, &WalletManager::deviceButtonRequest, this, &WindowManager::onDeviceButtonRequest);
|
||||
connect(m_walletManager, &WalletManager::deviceButtonPressed, this, &WindowManager::onDeviceButtonPressed);
|
||||
connect(m_walletManager, &WalletManager::deviceError, this, &WindowManager::onDeviceError);
|
||||
|
||||
connect(qApp, &QGuiApplication::lastWindowClosed, this, &WindowManager::quitAfterLastWindow);
|
||||
|
@ -374,6 +375,10 @@ void WindowManager::onDeviceButtonRequest(quint64 code) {
|
|||
m_splashDialog->setEnabled(true);
|
||||
}
|
||||
|
||||
void WindowManager::onDeviceButtonPressed() {
|
||||
m_splashDialog->hide();
|
||||
}
|
||||
|
||||
void WindowManager::onDeviceError(const QString &errorMessage) {
|
||||
// TODO: when does this get called?
|
||||
qCritical() << Q_FUNC_INFO << errorMessage;
|
||||
|
|
|
@ -39,6 +39,7 @@ private slots:
|
|||
void onWalletOpenPasswordRequired(bool invalidPassword, const QString &path);
|
||||
void onInitialNetworkConfigured();
|
||||
void onDeviceButtonRequest(quint64 code);
|
||||
void onDeviceButtonPressed();
|
||||
void onDeviceError(const QString &errorMessage);
|
||||
|
||||
private:
|
||||
|
|
|
@ -36,11 +36,11 @@ public:
|
|||
emit m_mgr->deviceButtonRequest(code);
|
||||
}
|
||||
//
|
||||
// virtual void onDeviceButtonPressed() override
|
||||
// {
|
||||
// qDebug() << __FUNCTION__;
|
||||
// emit m_mgr->deviceButtonPressed();
|
||||
// }
|
||||
virtual void onDeviceButtonPressed() override
|
||||
{
|
||||
qDebug() << __FUNCTION__;
|
||||
emit m_mgr->deviceButtonPressed();
|
||||
}
|
||||
|
||||
virtual void onDeviceError(const std::string &message) override
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue