From 1375c57c4ac56161ae0afb722a9ddef7a934a390 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 7 Mar 2021 14:12:23 +0100 Subject: [PATCH] Serendipity: Simplify GML and fix button alignment --- .../Applications/Serendipity/SerendipityWindow.gml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Userland/Applications/Serendipity/SerendipityWindow.gml b/Userland/Applications/Serendipity/SerendipityWindow.gml index acdef21c77..be5789fd59 100644 --- a/Userland/Applications/Serendipity/SerendipityWindow.gml +++ b/Userland/Applications/Serendipity/SerendipityWindow.gml @@ -73,12 +73,12 @@ } @GUI::Widget { - fixed_width: 5 + fixed_width: 3 } @GUI::Widget { name: "navigation_column" - fixed_width: 120 + fixed_width: 115 min_height: 160 layout: @GUI::VerticalBoxLayout { } @@ -86,22 +86,16 @@ @GUI::Button { name: "new_button" text: "What's New" - min_width: 115 - min_height: 24 } @GUI::Button { name: "help_button" text: "Help Contents" - min_width: 115 - min_height: 24 } @GUI::Button { name: "next_button" text: "Next Tip" - min_width: 115 - min_height: 24 } }