mirror of
https://github.com/mt-mods/mail.git
synced 2025-07-05 06:00:29 -04:00
Add multiple selection (#60)
* Add multiple selection * Fix wrong messages issues * Update translations * Mix colors for unread/cc in inbox with selected green * Fix duplicates when clicking on select all with already one selected, and add the number of selected items * Fixes * Remove old translations files * Fix filter priority
This commit is contained in:
parent
67bda9a788
commit
191e511a05
10 changed files with 293 additions and 148 deletions
|
@ -40,9 +40,9 @@ function mail.show_drafts(name)
|
|||
formspec[#formspec + 1] = S("(No subject)")
|
||||
end
|
||||
end
|
||||
if mail.selected_idxs.sent[name] then
|
||||
if mail.selected_idxs.drafts[name] then
|
||||
formspec[#formspec + 1] = ";"
|
||||
formspec[#formspec + 1] = tostring(mail.selected_idxs.sent[name] + 1)
|
||||
formspec[#formspec + 1] = tostring(mail.selected_idxs.drafts[name] + 1)
|
||||
end
|
||||
formspec[#formspec + 1] = "]"
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue