mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-11 08:34:52 -07:00
Reorganized images in subfolders
As per @daenyth’s comment: https://github.com/Cockatrice/Cockatrice/pull/792#issuecomment-76593730
This commit is contained in:
parent
092b0eaed6
commit
f17dec29f6
65 changed files with 120 additions and 403 deletions
|
|
@ -78,22 +78,22 @@ TabReplays::TabReplays(TabSupervisor *_tabSupervisor, AbstractClient *_client)
|
|||
hbox->addWidget(rightGroupBox);
|
||||
|
||||
aOpenLocalReplay = new QAction(this);
|
||||
aOpenLocalReplay->setIcon(QIcon("theme:icon_view.svg"));
|
||||
aOpenLocalReplay->setIcon(QIcon("theme:icons/view.svg"));
|
||||
connect(aOpenLocalReplay, SIGNAL(triggered()), this, SLOT(actOpenLocalReplay()));
|
||||
aDeleteLocalReplay = new QAction(this);
|
||||
aDeleteLocalReplay->setIcon(QIcon("theme:remove_row.svg"));
|
||||
aDeleteLocalReplay->setIcon(QIcon("theme:icons/remove_row.svg"));
|
||||
connect(aDeleteLocalReplay, SIGNAL(triggered()), this, SLOT(actDeleteLocalReplay()));
|
||||
aOpenRemoteReplay = new QAction(this);
|
||||
aOpenRemoteReplay->setIcon(QIcon("theme:icon_view.svg"));
|
||||
aOpenRemoteReplay->setIcon(QIcon("theme:icons/view.svg"));
|
||||
connect(aOpenRemoteReplay, SIGNAL(triggered()), this, SLOT(actOpenRemoteReplay()));
|
||||
aDownload = new QAction(this);
|
||||
aDownload->setIcon(QIcon("theme:arrow_left_green.svg"));
|
||||
aDownload->setIcon(QIcon("theme:icons/arrow_left_green.svg"));
|
||||
connect(aDownload, SIGNAL(triggered()), this, SLOT(actDownload()));
|
||||
aKeep = new QAction(this);
|
||||
aKeep->setIcon(QIcon("theme:lock.svg"));
|
||||
aKeep->setIcon(QIcon("theme:icons/lock.svg"));
|
||||
connect(aKeep, SIGNAL(triggered()), this, SLOT(actKeepRemoteReplay()));
|
||||
aDeleteRemoteReplay = new QAction(this);
|
||||
aDeleteRemoteReplay->setIcon(QIcon("theme:remove_row.svg"));
|
||||
aDeleteRemoteReplay->setIcon(QIcon("theme:icons/remove_row.svg"));
|
||||
connect(aDeleteRemoteReplay, SIGNAL(triggered()), this, SLOT(actDeleteRemoteReplay()));
|
||||
|
||||
leftToolBar->addAction(aOpenLocalReplay);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue