summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorJeremy Rimpo <jeremy.rimpo@servermonkey.com>2018-01-05 10:16:34 -0600
committerGitHub <noreply@github.com>2018-01-05 10:16:34 -0600
commitd2f90e6a761da3742789ce25779fe176e2a11aaf (patch)
tree51d0134ab3af06a52290ce9cb16409c714fd1e3b /src/mainwindow.cpp
parentd06972729d8410451266988a650633085b6441e8 (diff)
parent785852cf2120f2643a0476b43600ab7ef5c07638 (diff)
Merge pull request #193 from erasmux/dev
Log MO version + remove downloads auto scrolling
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index ddc4fe23..11693568 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -331,8 +331,6 @@ MainWindow::MainWindow(QSettings &initSettings
connect(m_OrganizerCore.directoryRefresher(), SIGNAL(progress(int)), this, SLOT(refresher_progress(int)));
connect(m_OrganizerCore.directoryRefresher(), SIGNAL(error(QString)), this, SLOT(showError(QString)));
- connect(m_OrganizerCore.downloadManager(), SIGNAL(downloadAdded()), ui->downloadView, SLOT(scrollToBottom()));
-
connect(&m_SavesWatcher, SIGNAL(directoryChanged(QString)), this, SLOT(refreshSavesIfOpen()));
connect(&m_OrganizerCore.settings(), SIGNAL(languageChanged(QString)), this, SLOT(languageChange(QString)));
@@ -1682,8 +1680,6 @@ void MainWindow::on_tabWidget_currentChanged(int index)
refreshDataTree();
} else if (index == 3) {
refreshSaveList();
- } else if (index == 4) {
- ui->downloadView->scrollToBottom();
}
}