Is there an option to hide the annoying and space consuming account switch sidebar, from the Delta chat 1.44.1 desktop app?
The sidebar for changing accounts and the multi-account notifications for me are the two most interesting new features of desktop version 1.44.1 and I really appreciated them, but I use multiple accounts, maybe for those who use a single account actually the sidebar might not be useful, in this case maybe it would “suffice” to make it visible only in case multiple accounts are configured and keep it hidden automatically in case a single account is configured.
I am a one-account user. I prefer a hideable sidebar.
make a good sketch/concept how it can be collapsible including consideration for those aspects:
- access to the settings via UI (keyboard shortcut is not known)
- is it only an option when you have only one account? if not then it needs some indication for unread messages on the ui element that shows the switcher
- consideration of traffic lights on macOS:
Then I’ll consider implementing it.
Just used task top version days ago, and had much trouble to be clear which account is actually open, at first. So maybe just a more clear rendering might be useful. (Maybe moving active avatar up, and highlight it all around, not just a polite white strip on the left.)
Hidding it would be as troublesome as on Android: not easy to figure out which account in use (one may think that having same avatar in use).
For also single account user a “+” to fast add an account would be maybe useful addition at the column bottom.
Before there is a more elegant way, you can hide the account sidebar in your custom theme using the following code. Hide it when the width is less than 1000px, otherwise display it. You can adjust this value yourself.
@media (max-width: 1000px) {
.styles_module_accountListSidebar {
display: none;
}
}
Signal has this burger thing:
It’s not for different accounts, but it’s similar looks-wise.
So, when the accounts are hidden, the burger can go besides the search bar, and when not, just below the traffic lights.
An issue to solve would be: how to display the fact that there are new messages on other accounts. Displaying a badge on the burger would be an option, IIRC Telegram does this.
Edit: thinking about it, this will act basically very similarly to how the “small screen mode” in DC desktop works, the interaction between a chat and the chat list.
BTW in Telegram there is no “accounts” sidebar, but there is only the burger menu, which shows a popover sidebar where you can select accounts (and it also includes other stuff)