Added ability to open account in new window with middle click.

This commit is contained in:
23rd 2024-03-15 02:34:49 +03:00 committed by John Preston
parent ded7aada52
commit 9e18236b55
1 changed files with 3 additions and 0 deletions

View File

@ -650,6 +650,9 @@ void SetupAccountsWrap(
if (which == Qt::LeftButton) {
callback(raw->clickModifiers());
return;
} else if (which == Qt::MiddleButton) {
callback(Qt::ControlModifier);
return;
} else if (which != Qt::RightButton) {
return;
}