Adjusted size of PyPAD configuration window to match size of rdairplay(1).

This commit is contained in:
Patrick Linstruth 2019-01-24 12:42:37 -08:00
parent 568fedd74a
commit 3d4b577338
2 changed files with 4 additions and 1 deletions

View File

@ -18414,3 +18414,6 @@
* Updated comments in 'pypad.Receiver::serviceDescription()' and
'pypad.Receiver::padField()' methods to caution against confusing
the two.
2019-01-24 Patrick Linstruth <patrick@deltecent.com>
* Reduced size of PyPAD edit window in rdadmin(1) to match
rdairplay(1).

View File

@ -100,7 +100,7 @@ EditPypad::EditPypad(int id,QWidget *parent)
QSize EditPypad::sizeHint() const
{
return QSize(600,800);
return QSize(600,738);
}