From c9b60520e1d5cf64ae0b245c62256dc888fd3cd5 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Mon, 28 Jun 2021 10:50:10 -0400 Subject: [PATCH] 2021-06-28 Fred Gleason * Increased the minimum width of the rdairplay(1) main screen to accomodate the added sound panel margin. Signed-off-by: Fred Gleason --- ChangeLog | 3 +++ rdairplay/rdairplay.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c6be3457..495dec2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21974,3 +21974,6 @@ 2021-06-28 Fred Gleason * Resized the log buttons in the bottom-right of the rdairplay(1) main screen to use all available space. +2021-06-28 Fred Gleason + * Increased the minimum width of the rdairplay(1) main screen to + accomodate the added sound panel margin. diff --git a/rdairplay/rdairplay.cpp b/rdairplay/rdairplay.cpp index 0753f857..36f5b7a8 100644 --- a/rdairplay/rdairplay.cpp +++ b/rdairplay/rdairplay.cpp @@ -732,7 +732,7 @@ MainWidget::MainWidget(RDConfig *config,QWidget *parent) QSize MainWidget::sizeHint() const { - return QSize(1024,870); + return QSize(1035,870); }