Reorganized images in subfolders

As per @daenyth’s comment:
https://github.com/Cockatrice/Cockatrice/pull/792#issuecomment-76593730
This commit is contained in:
Fabio Bas 2015-05-20 19:18:49 +02:00
parent 092b0eaed6
commit f17dec29f6
65 changed files with 120 additions and 403 deletions

View file

@ -51,12 +51,12 @@ bool PlayerListTWI::operator<(const QTreeWidgetItem &other) const
PlayerListWidget::PlayerListWidget(TabSupervisor *_tabSupervisor, AbstractClient *_client, TabGame *_game, QWidget *parent)
: QTreeWidget(parent), tabSupervisor(_tabSupervisor), client(_client), game(_game), gameStarted(false)
{
readyIcon = QIcon("theme:icon_ready_start.svg");
notReadyIcon = QIcon("theme:icon_not_ready_start.svg");
concededIcon = QIcon("theme:icon_conceded.svg");
playerIcon = QIcon("theme:icon_player.svg");
spectatorIcon = QIcon("theme:icon_spectator.svg");
lockIcon = QIcon("theme:lock.svg");
readyIcon = QIcon("theme:icons/ready_start.svg");
notReadyIcon = QIcon("theme:icons/not_ready_start.svg");
concededIcon = QIcon("theme:icons/conceded.svg");
playerIcon = QIcon("theme:icons/player.svg");
spectatorIcon = QIcon("theme:icons/spectator.svg");
lockIcon = QIcon("theme:icons/lock.svg");
if (tabSupervisor) {
itemDelegate = new PlayerListItemDelegate(this);