1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:47:35 +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:
supercyp 2021-03-07 09:04:06 -04:00 committed by GitHub
parent 7f9f916470
commit a6f957a36b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 14 deletions

View file

@ -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 {

View file

@ -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>();