From e17272141cd51bf1ecef61029cc1b8d39dfff755 Mon Sep 17 00:00:00 2001 From: Nodir Temirkhodjaev Date: Mon, 22 Feb 2021 00:11:56 +0500 Subject: [PATCH] UI: Hide "Collect allowed connections" options until impl. --- src/ui/form/conn/connectionswindow.cpp | 2 ++ src/ui/form/opt/pages/applicationspage.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/ui/form/conn/connectionswindow.cpp b/src/ui/form/conn/connectionswindow.cpp index b852219a..2b49b13a 100644 --- a/src/ui/form/conn/connectionswindow.cpp +++ b/src/ui/form/conn/connectionswindow.cpp @@ -182,6 +182,8 @@ void ConnectionsWindow::setupLogAllowedIp() fortManager()->applyConfImmediateFlags(); }); + + m_cbLogAllowedIp->setVisible(false); // TODO } void ConnectionsWindow::setupLogBlockedIp() diff --git a/src/ui/form/opt/pages/applicationspage.cpp b/src/ui/form/opt/pages/applicationspage.cpp index 9623baf8..d0130aee 100644 --- a/src/ui/form/opt/pages/applicationspage.cpp +++ b/src/ui/form/opt/pages/applicationspage.cpp @@ -444,6 +444,8 @@ void ApplicationsPage::setupGroupLogConn() ctrl()->setConfEdited(true); }); + + m_cbLogConn->setVisible(false); // TODO } void ApplicationsPage::setupGroupFragmentPacket()