mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 07:37:44 +00:00
Base: Remove accidental duplicate file
Looks like `NetworkSettings.gml` accidentally got placed inside of `/Base/home/anon`.
This commit is contained in:
parent
d3cffcfee5
commit
004bb59be5
1 changed files with 0 additions and 83 deletions
|
@ -1,83 +0,0 @@
|
||||||
@GUI::Frame {
|
|
||||||
fill_with_background_color: true
|
|
||||||
layout: @GUI::VerticalBoxLayout {
|
|
||||||
margins: [10]
|
|
||||||
spacing: 5
|
|
||||||
}
|
|
||||||
|
|
||||||
@GUI::Widget {
|
|
||||||
layout: @GUI::HorizontalBoxLayout {
|
|
||||||
spacing: 20
|
|
||||||
}
|
|
||||||
fixed_height: 40
|
|
||||||
|
|
||||||
@GUI::Label {
|
|
||||||
fixed_width: 32
|
|
||||||
fixed_height: 32
|
|
||||||
icon: "/res/icons/32x32/network.png"
|
|
||||||
}
|
|
||||||
|
|
||||||
@GUI::Label {
|
|
||||||
text: "Select adapter:"
|
|
||||||
fixed_width: 100
|
|
||||||
text_alignment: "CenterLeft"
|
|
||||||
}
|
|
||||||
|
|
||||||
@GUI::ComboBox {
|
|
||||||
model_only: true
|
|
||||||
name: "adapters_combobox"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@GUI::GroupBox {
|
|
||||||
title: "Network"
|
|
||||||
shrink_to_fit: true
|
|
||||||
layout: @GUI::VerticalBoxLayout {
|
|
||||||
margins: [10]
|
|
||||||
}
|
|
||||||
|
|
||||||
@GUI::CheckBox {}
|
|
||||||
|
|
||||||
@GUI::Widget {
|
|
||||||
layout: @GUI::HorizontalBoxLayout {}
|
|
||||||
fixed_height: 30
|
|
||||||
|
|
||||||
@GUI::Label {
|
|
||||||
text: "IP Address:"
|
|
||||||
fixed_width: 100
|
|
||||||
text_alignment: "CenterLeft"
|
|
||||||
}
|
|
||||||
|
|
||||||
@GUI::TextBox {
|
|
||||||
name: "ip_address_textbox"
|
|
||||||
}
|
|
||||||
|
|
||||||
@GUI::Label {
|
|
||||||
text: "/"
|
|
||||||
fixed_width: 10
|
|
||||||
}
|
|
||||||
|
|
||||||
@GUI::SpinBox {
|
|
||||||
name: "cidr_spinbox"
|
|
||||||
fixed_width: 50
|
|
||||||
min: 1
|
|
||||||
max: 32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@GUI::Widget {
|
|
||||||
layout: @GUI::HorizontalBoxLayout {}
|
|
||||||
fixed_height: 30
|
|
||||||
|
|
||||||
@GUI::Label {
|
|
||||||
text: "Default gateway:"
|
|
||||||
fixed_width: 100
|
|
||||||
text_alignment: "CenterLeft"
|
|
||||||
}
|
|
||||||
|
|
||||||
@GUI::TextBox {
|
|
||||||
name: "default_gateway_textbox"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue