mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 09:16:05 +03:00
- Suppressed QLayout: Attempting to add QLayout "" to properties "properties" warning message when opening a properties dialog (closes #380414)
This commit is contained in:
parent
f809b8a014
commit
f6f4b5f219
2 changed files with 4 additions and 3 deletions
|
@ -136,9 +136,8 @@ properties::properties(QWidget *parent, bittorrent *BTSession, QTorrentHandle &h
|
|||
updateInfosTimer->start(3000);
|
||||
progressBar = new RealProgressBar(this);
|
||||
progressBar->setForegroundColor(Qt::blue);
|
||||
QVBoxLayout *vbox = new QVBoxLayout(this);
|
||||
vbox->addWidget(progressBar);
|
||||
RealProgressBox->setLayout(vbox);
|
||||
progressBarVbox = new QVBoxLayout(RealProgressBox);
|
||||
progressBarVbox->addWidget(progressBar);
|
||||
progressBarUpdater = new RealProgressBarThread(progressBar, h);
|
||||
progressBarUpdater->start();
|
||||
// progressBarUpdater->refresh();
|
||||
|
@ -153,6 +152,7 @@ properties::~properties(){
|
|||
delete PropListModel;
|
||||
delete progressBarUpdater;
|
||||
delete progressBar;
|
||||
delete progressBarVbox;
|
||||
}
|
||||
|
||||
void properties::addFilesToTree(const torrent_file *root, QStandardItem *parent) {
|
||||
|
|
|
@ -59,6 +59,7 @@ class properties : public QDialog, private Ui::properties{
|
|||
QStringList urlSeeds;
|
||||
RealProgressBar *progressBar;
|
||||
RealProgressBarThread *progressBarUpdater;
|
||||
QVBoxLayout *progressBarVbox;
|
||||
|
||||
protected slots:
|
||||
void on_okButton_clicked();
|
||||
|
|
Loading…
Reference in a new issue