1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 01:27:34 +00:00

CertificateSettings: Update to be more consistent with other settings

This commit is contained in:
Cameron Youell 2023-04-04 18:04:13 +10:00 committed by Andrew Kaster
parent 0060b8c4e5
commit ef5cca71dc
5 changed files with 8 additions and 9 deletions

View file

@ -0,0 +1,39 @@
@GUI::Widget {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [8]
}
@GUI::GroupBox {
title: "Trusted Root Certification Authorities"
fixed_height: 500
fixed_width: 465
layout: @GUI::VerticalBoxLayout {
margins: [8]
}
@GUI::TableView {
name: "root_ca_tableview"
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 6
}
preferred_height: "fit"
@GUI::Button {
name: "import_button"
text: "Import"
fixed_width: 80
}
@GUI::Button {
name: "export_button"
text: "Export"
fixed_width: 80
enabled: false
}
}
}
}