diff --git a/sources/qet_elementscaler/qet_elementscaler.cpp b/sources/qet_elementscaler/qet_elementscaler.cpp index e7356e905..5e5921f38 100644 --- a/sources/qet_elementscaler/qet_elementscaler.cpp +++ b/sources/qet_elementscaler/qet_elementscaler.cpp @@ -23,7 +23,6 @@ #include #include #include -#include /** * @brief QET_ElementScaler diff --git a/sources/ui/aboutqetdialog.cpp b/sources/ui/aboutqetdialog.cpp index b45b10ff7..8681c1b8b 100644 --- a/sources/ui/aboutqetdialog.cpp +++ b/sources/ui/aboutqetdialog.cpp @@ -218,6 +218,7 @@ void AboutQETDialog::setLoginfo() { ui->m_log_comboBox->addItem(fileInfo.absoluteFilePath()); } + ui->m_log_comboBox->setCurrentIndex(ui->m_log_comboBox->count() - 1); } /** @@ -263,4 +264,5 @@ void AboutQETDialog::on_m_log_comboBox_currentTextChanged(const QString &arg1) ui->m_log_textEdit->setPlainText(log_File.readAll()); } log_File.close(); + ui->m_log_textEdit->moveCursor(QTextCursor::End); }