fort/src/ui/qml/pages/ActivityPage.qml

18 lines
366 B
QML
Raw Normal View History

2017-09-02 08:07:07 +00:00
import QtQuick 2.9
import QtQuick.Layouts 1.3
import QtQuick.Controls 2.2
2017-09-02 10:17:51 +00:00
import com.fortfirewall 1.0
2017-09-02 08:07:07 +00:00
BasePage {
ColumnLayout {
CheckBox {
text: QT_TRANSLATE_NOOP("qml", "Enabled")
checked: firewallConf.appLogBlocked
onToggled: {
firewallConf.appLogBlocked = checked;
}
}
}
2017-09-02 08:07:07 +00:00
}