Version 0.10.0

- UI reworked
This commit is contained in:
Nikolaj Schlej 2013-11-22 23:25:15 +01:00
parent 8a3792d9b5
commit 5592529b33
7 changed files with 308 additions and 569 deletions

View file

@ -172,6 +172,8 @@ QVariant TreeItem::data(int column) const
case 0: //Name
return itemName;
case 1: //Action
if (itemAction == TreeItem::Modify)
return "M";
if (itemAction == TreeItem::Remove)
return "X";
if (itemAction == TreeItem::Rebuild)
@ -293,7 +295,4 @@ void TreeItem::setAction(const UINT8 action)
void TreeItem::setCompression(const UINT8 algorithm)
{
itemCompression = algorithm;
// Set rebuild action
setAction(TreeItem::Rebuild);
}