mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-22 15:41:41 +02:00
2021-07-29 Fred Gleason <fredg@paravelsystems.com>
* Corrected misaligned readout labels in the 'Edit Audio' ('RDMarkerDialog') dialog. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
938f23e295
commit
aa795566fa
@ -22114,3 +22114,6 @@
|
||||
select any sample rate other than 32000.
|
||||
2021-07-28 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Added a '--enable-i18n-updates' switch to '.configure'.
|
||||
2021-07-29 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Corrected misaligned readout labels in the 'Edit Audio'
|
||||
('RDMarkerDialog') dialog.
|
||||
|
@ -590,30 +590,33 @@ void RDMarkerPlayer::trimThresholdChanged(int dbfs)
|
||||
|
||||
void RDMarkerPlayer::resizeEvent(QResizeEvent *)
|
||||
{
|
||||
for(int i=0;i<RDMARKERPLAYER_READOUT_QUAN;i++) {
|
||||
d_readout_labels[i]->setGeometry(2,
|
||||
i*(d_cut_readout->sizeHint().height()/4-1),
|
||||
15+50,
|
||||
d_cut_readout->sizeHint().height()/4+1);
|
||||
for(int i=0;i<4;i++) {
|
||||
d_readout_labels[i]->
|
||||
setGeometry(2,12+i*(d_cut_readout->sizeHint().height()/4),
|
||||
65,d_cut_readout->sizeHint().height()/4+1);
|
||||
}
|
||||
for(int i=4;i<RDMARKERPLAYER_READOUT_QUAN;i++) {
|
||||
d_readout_labels[i]->
|
||||
setGeometry(2,14+i*(d_cut_readout->sizeHint().height()/4),
|
||||
65,d_cut_readout->sizeHint().height()/4+1);
|
||||
}
|
||||
|
||||
d_cut_readout->setGeometry(70,
|
||||
2+8,
|
||||
d_cut_readout->sizeHint().width(),
|
||||
d_cut_readout->
|
||||
setGeometry(70,10,d_cut_readout->sizeHint().width(),
|
||||
d_cut_readout->sizeHint().height());
|
||||
|
||||
d_talk_readout->setGeometry(70+1*(d_talk_readout->sizeHint().width()),
|
||||
2+8,
|
||||
d_talk_readout->setGeometry(70+d_talk_readout->sizeHint().width(),
|
||||
10,
|
||||
d_talk_readout->sizeHint().width(),
|
||||
d_talk_readout->sizeHint().height());
|
||||
|
||||
d_segue_readout->setGeometry(70+2*(d_segue_readout->sizeHint().width()),
|
||||
2+8,
|
||||
10,
|
||||
d_segue_readout->sizeHint().width(),
|
||||
d_segue_readout->sizeHint().height());
|
||||
|
||||
d_hook_readout->setGeometry(70+3*(d_hook_readout->sizeHint().width()),
|
||||
2+8,
|
||||
10,
|
||||
d_hook_readout->sizeHint().width(),
|
||||
d_hook_readout->sizeHint().height());
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user