diff --git a/Userland/Applications/Run/Run.gml b/Userland/Applications/Run/Run.gml index d5bf77096b..53f2d94b9f 100644 --- a/Userland/Applications/Run/Run.gml +++ b/Userland/Applications/Run/Run.gml @@ -2,12 +2,13 @@ fill_with_background_color: true layout: @GUI::VerticalBoxLayout { - margins: [10, 10, 10, 10] + margins: [4, 4, 4, 4] } @GUI::Widget { + max_height: 32 layout: @GUI::HorizontalBoxLayout { - spacing: 10 + spacing: 16 } @GUI::ImageWidget { @@ -22,7 +23,9 @@ } @GUI::Widget { - layout: @GUI::HorizontalBoxLayout + layout: @GUI::HorizontalBoxLayout { + margins: [4, 4, 4, 4] + } @GUI::Label { text: "Open:" @@ -37,6 +40,7 @@ @GUI::Widget { layout: @GUI::HorizontalBoxLayout + fixed_height: 22 // HACK: using an empty widget as a spacer @GUI::Widget @@ -44,19 +48,19 @@ @GUI::Button { name: "ok_button" text: "OK" - fixed_width: 75 + fixed_width: 80 } @GUI::Button { name: "cancel_button" text: "Cancel" - fixed_width: 75 + fixed_width: 80 } @GUI::Button { name: "browse_button" text: "Browse..." - fixed_width: 75 + fixed_width: 80 } } } diff --git a/Userland/Applications/Run/RunWindow.cpp b/Userland/Applications/Run/RunWindow.cpp index bf6fa40a37..ed7f7740c2 100644 --- a/Userland/Applications/Run/RunWindow.cpp +++ b/Userland/Applications/Run/RunWindow.cpp @@ -33,7 +33,7 @@ RunWindow::RunWindow() set_title("Run"); set_icon(app_icon.bitmap_for_size(16)); - resize(345, 140); + resize(345, 100); set_resizable(false); set_minimizable(false); diff --git a/Userland/Applications/Run/main.cpp b/Userland/Applications/Run/main.cpp index b15a6ccf73..82ef0ee165 100644 --- a/Userland/Applications/Run/main.cpp +++ b/Userland/Applications/Run/main.cpp @@ -20,7 +20,7 @@ int main(int argc, char** argv) auto app = GUI::Application::construct(argc, argv); auto window = RunWindow::construct(); - window->move_to(12, GUI::Desktop::the().rect().bottom() - GUI::Desktop::the().taskbar_height() - 12 - window->height()); + window->move_to(16, GUI::Desktop::the().rect().bottom() - GUI::Desktop::the().taskbar_height() - 16 - window->height()); window->show(); return app->exec();