| 878 | // ---------------------------------------------------------------------------- |
| 879 | |
| 880 | void SettingsWindow::showAbout() |
| 881 | { |
| 882 | DEBUG_LOW_LEVEL << Q_FUNC_INFO; |
| 883 | |
| 884 | emit requestFirmwareVersion(); |
| 885 | |
| 886 | ui->tabWidget->setCurrentWidget(ui->tabAbout); |
| 887 | this->show(); |
| 888 | |
| 889 | m_smoothScrollTimer.setInterval(100); |
| 890 | connect(&m_smoothScrollTimer, SIGNAL(timeout()), this, SLOT(scrollThanks())); |
| 891 | m_smoothScrollTimer.start(); |
| 892 | } |
| 893 | |
| 894 | void SettingsWindow::scrollThanks() |
| 895 | { |