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

24 lines
433 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 {
2017-09-02 14:36:38 +00:00
anchors.fill: parent
Switch {
anchors.right: parent.right
onToggled: {
firewallConf.appLogBlocked = checked;
}
}
2017-09-02 14:36:38 +00:00
GridView {
Layout.fillWidth: true
Layout.fillHeight: true
}
}
2017-09-02 08:07:07 +00:00
}