1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 20:57:44 +00:00

Browser+BrowserSettings: Add preference for new tab

This commit is contained in:
Xexxa 2022-06-25 21:08:17 +02:00 committed by Linus Groh
parent ef46100fd3
commit 6571455499
6 changed files with 58 additions and 10 deletions

View file

@ -9,7 +9,7 @@
title: "Homepage"
fixed_height: 70
layout: @GUI::VerticalBoxLayout {
margins: [16, 8, 8]
margins: [2, 8, 2]
spacing: 2
}
@ -24,15 +24,42 @@
icon: "/res/icons/32x32/home.png"
}
@GUI::Label {
text: "URL:"
text_alignment: "CenterLeft"
fixed_width: 30
}
@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
}
@GUI::TextBox {
name: "homepage_url_textbox"
placeholder: "https://example.com"
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 16
}
@GUI::Label {
text: "URL:"
text_alignment: "CenterLeft"
fixed_width: 45
}
@GUI::TextBox {
name: "homepage_url_textbox"
placeholder: "https://example.com"
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 16
}
@GUI::Label {
text: "New Tab:"
text_alignment: "CenterLeft"
fixed_width: 45
}
@GUI::TextBox {
name: "new_tab_url_textbox"
placeholder: "https://example.com"
}
}
}
}
}