mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-19 06:32:34 +02:00
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:
parent
42a2b1a0dd
commit
98e040f638
@ -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.
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user