meli/src
Manos Pitsidianakis aa73bd71c3
listing: fix mailbox tree rendering
Indentation value was being interpreted mirrored (raw binary value in
parenthesis):

   0  testing_account (0)
   1   ┣━Archives     (0)
   2   ┃ ┣━2014       (1)
   3   ┃ ┃ ┗━10       (11)
   4   ┃ ┗━2015       (1)
   5     ┃ ┗━05       (10) <- invalid/mirrored
   6   ┣━Drafts       (0)

Should be:

   0  testing_account (0)
   1   ┣━Archives     (0)
   2   ┃ ┣━2014       (1)
   3   ┃ ┃ ┗━10       (11)
   4   ┃ ┗━2015       (1)
   5   ┃   ┗━05       (10)
   6   ┣━Drafts       (0)
2020-11-11 17:14:34 +02:00
..
command Add quit command 2020-10-14 20:14:07 +03:00
components listing: fix mailbox tree rendering 2020-11-11 17:14:34 +02:00
conf listing: fix mailbox tree rendering 2020-11-11 17:14:34 +02:00
plugins Remove some old TODO comments 2020-08-26 00:54:07 +03:00
terminal terminal/embed: remove some allocations and unwraps 2020-10-18 15:02:18 +03:00
types Fix clippy lints 2020-07-06 15:27:08 +03:00
bin.rs Remove status tab, move account status page to listing 2020-11-09 19:35:47 +02:00
command.rs Add quit command 2020-10-14 20:14:07 +03:00
components.rs utilities: move PageMovement to components mod 2020-10-21 13:19:13 +03:00
conf.rs Remove unused plugin interface 2020-10-21 17:58:30 +03:00
jobs.rs Replace PosixTimer with async timers 2020-10-29 13:18:36 +02:00
mailcap.rs Remove some needless clones and stuff (thanks to Clippy) 2020-07-13 21:36:55 +03:00
managesieve.rs Replace PosixTimer with async timers 2020-10-29 13:18:36 +02:00
plugins.rs plugins: place socket in XDG_RUNTIME_DIR, not CWD 2020-09-20 13:31:18 +03:00
sqlite3.rs melib/email: remove Envelope::from_token 2020-08-26 00:54:07 +03:00
state.rs Replace PosixTimer with async timers 2020-10-29 13:18:36 +02:00
terminal.rs Add opt-in mouse support 2020-10-14 14:58:02 +03:00
types.rs Replace PosixTimer with async timers 2020-10-29 13:18:36 +02:00