mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-30 05:09:01 +00:00
Serendipity: Make main window resizable (#5675)
If it is not resizable, the "What's new" page may be hard to read.
This commit is contained in:
parent
7f9f916470
commit
a6f957a36b
Notes:
sideshowbarker
2024-07-18 21:39:07 +09:00
Author: https://github.com/Supercip971 🔰
Commit: a6f957a36b
Pull-request: https://github.com/SerenityOS/serenity/pull/5675
2 changed files with 16 additions and 14 deletions
|
@ -20,14 +20,14 @@
|
|||
}
|
||||
|
||||
@GUI::Widget {
|
||||
fixed_height: 160
|
||||
min_height: 160
|
||||
layout: @GUI::HorizontalBoxLayout {
|
||||
}
|
||||
|
||||
@GUI::Frame {
|
||||
name: "tip_frame"
|
||||
fixed_width: 340
|
||||
fixed_height: 160
|
||||
min_width: 340
|
||||
min_height: 160
|
||||
layout: @GUI::HorizontalBoxLayout {
|
||||
margins: [0, 0, 16, 0]
|
||||
}
|
||||
|
@ -67,46 +67,48 @@
|
|||
|
||||
@Web::OutOfProcessWebView {
|
||||
name: "web_view"
|
||||
fixed_width: 340
|
||||
fixed_height: 160
|
||||
min_width: 340
|
||||
min_height: 160
|
||||
visible: false
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
fixed_width: 5
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
name: "navigation_column"
|
||||
fixed_width: 120
|
||||
fixed_height: 160
|
||||
min_height: 160
|
||||
layout: @GUI::VerticalBoxLayout {
|
||||
}
|
||||
|
||||
@GUI::Button {
|
||||
name: "new_button"
|
||||
text: "What's New"
|
||||
fixed_width: 115
|
||||
fixed_height: 24
|
||||
min_width: 115
|
||||
min_height: 24
|
||||
}
|
||||
|
||||
@GUI::Button {
|
||||
name: "help_button"
|
||||
text: "Help Contents"
|
||||
fixed_width: 115
|
||||
fixed_height: 24
|
||||
min_width: 115
|
||||
min_height: 24
|
||||
}
|
||||
|
||||
@GUI::Button {
|
||||
name: "next_button"
|
||||
text: "Next Tip"
|
||||
fixed_width: 115
|
||||
fixed_height: 24
|
||||
min_width: 115
|
||||
min_height: 24
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
fixed_height: 5
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
|
|
|
@ -63,11 +63,11 @@ int main(int argc, char** argv)
|
|||
}
|
||||
|
||||
auto window = GUI::Window::construct();
|
||||
window->resize(480, 250);
|
||||
window->set_minimum_size(480, 250);
|
||||
window->center_on_screen();
|
||||
|
||||
window->set_title("Welcome");
|
||||
window->set_resizable(false);
|
||||
window->set_resizable(true);
|
||||
window->set_window_type(GUI::WindowType::ToolWindow);
|
||||
window->set_main_widget<SerendipityWidget>();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue