2022-05-23 Fred Gleason <fredg@paravelsystems.com>

* Tweaked the layout of the meter strip in rdairplay(1) so as to
	keep 4 character long labels from running together.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2022-05-23 12:43:56 -04:00
parent 42a2b1a0dd
commit 98e040f638
2 changed files with 5 additions and 2 deletions

View File

@ -23145,3 +23145,6 @@
2022-05-23 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcartslots(1) that caused default settings
to fail to be loaded correctly at startup.
2022-05-23 Fred Gleason <fredg@paravelsystems.com>
* Tweaked the layout of the meter strip in rdairplay(1) so as to
keep 4 character long labels from running together.

View File

@ -2,7 +2,7 @@
//
// A strip of side-by-side vertical audio meters.
//
// (C) Copyright 2002-2021 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2002-2022 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License
@ -37,7 +37,7 @@ QSize RDMeterStrip::sizeHint() const
if(d_types.size()==0) {
return QSize(1,125);
}
return QSize(40*d_types.size(),125);
return QSize(45*d_types.size(),125);
}