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); }