From 48776daf36489a46339f2afe4c6e81b786a63918 Mon Sep 17 00:00:00 2001 From: PulkoMandy Date: Sun, 16 Oct 2022 09:59:40 +0200 Subject: [PATCH] AboutSystem: restore previous size constraints The window was changed to be larger and completely fill he screen at 640x480, this does not look right. Restore the previous 500x300 size constraint. Fixes #17952. Change-Id: I7d60253b7304ede788e064adf2bad20168393a33 --- src/apps/aboutsystem/AboutSystem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/aboutsystem/AboutSystem.cpp b/src/apps/aboutsystem/AboutSystem.cpp index 9d1f8c3620..9d6e43b682 100644 --- a/src/apps/aboutsystem/AboutSystem.cpp +++ b/src/apps/aboutsystem/AboutSystem.cpp @@ -88,8 +88,8 @@ static const char* kSignature = "application/x-vnd.Haiku-About"; -static const float kWindowWidth = 629.0f; -static const float kWindowHeight = 445.0f; +static const float kWindowWidth = 500.0f; +static const float kWindowHeight = 300.0f; static const float kSysInfoMinWidth = 163.0f; static const float kSysInfoMinHeight = 193.0f;