AccountSwitcher: keep sort order during session

This commit is contained in:
tobtoht 2023-01-17 22:06:08 +01:00
parent 93bfb93fb3
commit 5b5daa7089
No known key found for this signature in database
GPG key ID: E45B10DD027D2472
2 changed files with 4 additions and 3 deletions

View file

@ -10,7 +10,6 @@
#include "config-feather.h"
#include "constants.h"
#include "dialog/AccountSwitcherDialog.h"
#include "dialog/BalanceDialog.h"
#include "dialog/DebugInfoDialog.h"
#include "dialog/PasswordDialog.h"
@ -53,6 +52,7 @@ MainWindow::MainWindow(WindowManager *windowManager, Wallet *wallet, QWidget *pa
m_windowCalc = new CalcWindow(this);
m_splashDialog = new SplashDialog(this);
m_accountSwitcherDialog = new AccountSwitcherDialog(m_ctx, this);
this->restoreGeo();
@ -1030,8 +1030,7 @@ void MainWindow::showWalletCacheDebugDialog() {
}
void MainWindow::showAccountSwitcherDialog() {
AccountSwitcherDialog dialog{m_ctx, this};
dialog.exec();
m_accountSwitcherDialog->show();
}
void MainWindow::showAddressChecker() {

View file

@ -14,6 +14,7 @@
#include "SettingsDialog.h"
#include "dialog/AboutDialog.h"
#include "dialog/AccountSwitcherDialog.h"
#include "dialog/SignVerifyDialog.h"
#include "dialog/VerifyProofDialog.h"
#include "dialog/SeedDialog.h"
@ -230,6 +231,7 @@ private:
CalcWindow *m_windowCalc = nullptr;
SplashDialog *m_splashDialog = nullptr;
AccountSwitcherDialog *m_accountSwitcherDialog = nullptr;
#ifdef HAS_XMRIG
XMRigWidget *m_xmrig = nullptr;