|
|
|
@ -113,8 +113,9 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), dis
@@ -113,8 +113,9 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), dis
|
|
|
|
|
connecStatusLblIcon->setFrameShape(QFrame::NoFrame); |
|
|
|
|
connecStatusLblIcon->setPixmap(QPixmap(QString::fromUtf8(":/Icons/skin/disconnected.png"))); |
|
|
|
|
connecStatusLblIcon->setToolTip(QString::fromUtf8("<b>")+tr("Connection status:")+QString::fromUtf8("</b><br>")+tr("Offline")+QString::fromUtf8("<br><i>")+tr("No peers found...")+QString::fromUtf8("</i>")); |
|
|
|
|
toolBar->insertWidget(actionDecreasePriority, connecStatusLblIcon); |
|
|
|
|
toolBar->insertSeparator(actionDecreasePriority); |
|
|
|
|
toolBar->addWidget(connecStatusLblIcon); |
|
|
|
|
prioSeparator = toolBar->insertSeparator(actionDecreasePriority); |
|
|
|
|
prioSeparator->setVisible(false); |
|
|
|
|
actionDelete_Permanently->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/delete_perm.png"))); |
|
|
|
|
actionTorrent_Properties->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/properties.png"))); |
|
|
|
|
actionCreate_torrent->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/new.png"))); |
|
|
|
@ -1120,6 +1121,7 @@ void GUI::configureSession(bool deleteOptions) {
@@ -1120,6 +1121,7 @@ void GUI::configureSession(bool deleteOptions) {
|
|
|
|
|
finishedTorrentTab->hidePriorityColumn(false); |
|
|
|
|
actionDecreasePriority->setVisible(true); |
|
|
|
|
actionIncreasePriority->setVisible(true); |
|
|
|
|
prioSeparator->setVisible(true); |
|
|
|
|
toolBar->layout()->setSpacing(7); |
|
|
|
|
} |
|
|
|
|
int max_torrents = options->getMaxActiveTorrents(); |
|
|
|
@ -1136,6 +1138,7 @@ void GUI::configureSession(bool deleteOptions) {
@@ -1136,6 +1138,7 @@ void GUI::configureSession(bool deleteOptions) {
|
|
|
|
|
finishedTorrentTab->hidePriorityColumn(true); |
|
|
|
|
actionDecreasePriority->setVisible(false); |
|
|
|
|
actionIncreasePriority->setVisible(false); |
|
|
|
|
prioSeparator->setVisible(false); |
|
|
|
|
toolBar->layout()->setSpacing(7); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|