You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
576 B
30 lines
576 B
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import Eden.Interface
|
|
import Eden.Config
|
|
|
|
PageScrollView {
|
|
id: scroll
|
|
|
|
function apply() {
|
|
net.apply()
|
|
sys.apply()
|
|
}
|
|
|
|
ColumnLayout {
|
|
width: scroll.width - scroll.effectiveScrollBarWidth
|
|
|
|
SettingsList {
|
|
id: net
|
|
category: SettingsCategories.Network
|
|
}
|
|
|
|
SettingsList {
|
|
id: sys
|
|
category: SettingsCategories.System
|
|
idExclude: ["custom_rtc", "custom_rtc_offset", "current_user"]
|
|
}
|
|
}
|
|
}
|