From: alex-z Date: Mon, 24 Oct 2022 13:36:53 +0000 (+0300) Subject: Fix incorrect current user index when removing and adding an account. X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~11^2~164^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b00007e07d621363aa030df49f135b3943da7a6b;p=nextcloud-desktop.git Fix incorrect current user index when removing and adding an account. Signed-off-by: alex-z --- diff --git a/src/gui/tray/usermodel.cpp b/src/gui/tray/usermodel.cpp index 995e2907b..c7d71ec3b 100644 --- a/src/gui/tray/usermodel.cpp +++ b/src/gui/tray/usermodel.cpp @@ -966,8 +966,8 @@ void UserModel::addUser(AccountStatePtr &user, const bool &isCurrent) }); _users << u; - if (isCurrent) { - _currentUserId = _users.indexOf(_users.last()); + if (isCurrent || _currentUserId < 0) { + setCurrentUserId(_users.size() - 1); } endInsertRows(); @@ -1018,12 +1018,31 @@ void UserModel::openCurrentAccountServer() void UserModel::setCurrentUserId(const int id) { - if (_currentUserId == id || _currentUserId < 0 || _currentUserId >= _users.size()) + if (_currentUserId == id) { + // order has changed, index remained the same + if (id >= 0 && id < _users.size() && !_users[id]->isCurrentUser()) { + for (auto &user : _users) { + user->setCurrentUser(false); + } + _users[id]->setCurrentUser(true); + emit currentUserChanged(); + } return; - - _users[_currentUserId]->setCurrentUser(false); - _users[id]->setCurrentUser(true); + } _currentUserId = id; + + if (_users.isEmpty()) { + emit currentUserChanged(); + return; + } + + if (id >= 0 && id < _users.size()) { + for (auto &user : _users) { + user->setCurrentUser(false); + } + _users[id]->setCurrentUser(true); + } + emit currentUserChanged(); } @@ -1045,17 +1064,16 @@ void UserModel::logout(const int id) void UserModel::removeAccount(const int id) { - if (id < 0 || id >= _users.size()) + if (id < 0 || id >= _users.size()) { return; + } QMessageBox messageBox(QMessageBox::Question, tr("Confirm Account Removal"), tr("

Do you really want to remove the connection to the account %1?

" "

Note: This will not delete any files.

") - .arg(_users[id]->name()), - QMessageBox::NoButton); - QPushButton *yesButton = - messageBox.addButton(tr("Remove connection"), QMessageBox::YesRole); + .arg(_users[id]->name()), QMessageBox::NoButton); + QPushButton *yesButton = messageBox.addButton(tr("Remove connection"), QMessageBox::YesRole); messageBox.addButton(tr("Cancel"), QMessageBox::NoRole); messageBox.exec(); @@ -1063,16 +1081,23 @@ void UserModel::removeAccount(const int id) return; } - if (_users[id]->isCurrentUser() && _users.count() > 1) { - id == 0 ? setCurrentUserId(1) : setCurrentUserId(0); - } - _users[id]->logout(); _users[id]->removeAccount(); beginRemoveRows(QModelIndex(), id, id); _users.removeAt(id); endRemoveRows(); + + if (_users.isEmpty()) { + setCurrentUserId(-1); + } else if (_users.size() == 1) { + setCurrentUserId(0); + } else { + if (currentUserId() != id && currentUserId() < id) { + return; + } + setCurrentUserId(id < _users.size() ? id : id - 1); + } } std::shared_ptr UserModel::userStatusConnector(int id) diff --git a/src/gui/tray/usermodel.h b/src/gui/tray/usermodel.h index 62ad1eb2f..3ebc8d623 100644 --- a/src/gui/tray/usermodel.h +++ b/src/gui/tray/usermodel.h @@ -213,7 +213,7 @@ private: static UserModel *_instance; UserModel(QObject *parent = nullptr); QList _users; - int _currentUserId = 0; + int _currentUserId = -1; bool _init = true; void buildUserList();