show if a folder is synced

pull/23/head
JuanJakobo 2021-02-12 16:44:53 +01:00
parent e86395264e
commit a3dc3a6b73
1 changed files with 8 additions and 0 deletions

View File

@ -41,6 +41,14 @@ void ListViewEntry::draw(const Item &item, ifont *entryFont, ifont *entryFontBol
DrawTextRect(_position.x, _position.y + 3 * fontHeight, _position.w, fontHeight, "Click to Download", ALIGN_RIGHT);
}
}
else
{
if (item.getState() == FileState::ISYNCED)
{
DrawTextRect(_position.x, _position.y + 3 * fontHeight, _position.w, fontHeight, "Folder synced", ALIGN_RIGHT);
}
}
DrawTextRect(_position.x, _position.y + 2 * fontHeight, _position.w, fontHeight, item.getLastEditDate().c_str(), ALIGN_LEFT);
DrawTextRect(_position.x, _position.y + 3 * fontHeight, _position.w, fontHeight, item.getSize().c_str(), ALIGN_LEFT);
}