From f07496ac6d42986266f3bff5093fa0009521ecd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Tue, 11 Oct 2016 21:34:02 +0200 Subject: GH-1675 reimplement suspesion of log watch --- application/pages/LogPage.cpp | 2 +- application/pages/LogPage.h | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) (limited to 'application') diff --git a/application/pages/LogPage.cpp b/application/pages/LogPage.cpp index e7b670ea..19d1c7fe 100644 --- a/application/pages/LogPage.cpp +++ b/application/pages/LogPage.cpp @@ -240,7 +240,7 @@ void LogPage::on_btnBottom_clicked() void LogPage::on_trackLogCheckbox_clicked(bool checked) { - m_write_active = checked; + m_model->suspend(!checked); } void LogPage::on_wrapCheckbox_clicked(bool checked) diff --git a/application/pages/LogPage.h b/application/pages/LogPage.h index f98b5ecf..37679327 100644 --- a/application/pages/LogPage.h +++ b/application/pages/LogPage.h @@ -76,12 +76,6 @@ private: Ui::LogPage *ui; InstancePtr m_instance; std::shared_ptr m_process; - int m_last_scroll_value = 0; - bool m_scroll_active = true; - int m_saved_offset = 0; - bool m_write_active = true; - bool m_stopOnOverflow = true; - bool m_autoScroll = false; BasePageContainer * m_parentContainer; LogFormatProxyModel * m_proxy; -- cgit v1.2.3