mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-22 07:39:35 +02:00
2022-09-27 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdairplay(1) that caused the lower left-hand border of the cart labels to be clipped in the Button Widget. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
634a837094
commit
b18e1dbca8
@ -23402,3 +23402,6 @@
|
||||
2022-09-27 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a regression in rdairplay(1) that caused a segfault when
|
||||
unloading a log.
|
||||
2022-09-27 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a regression in rdairplay(1) that caused the lower left-hand
|
||||
border of the cart labels to be clipped in the Button Widget.
|
||||
|
@ -367,12 +367,14 @@ void LogLineBox::setMode(LogLineBox::Mode mode)
|
||||
line_down_label->show();
|
||||
line_position_bar->show();
|
||||
line_description_label->show();
|
||||
line_outcue_label->show();
|
||||
}
|
||||
else {
|
||||
line_up_label->hide();
|
||||
line_down_label->hide();
|
||||
line_position_bar->hide();
|
||||
line_description_label->hide();
|
||||
line_outcue_label->hide();
|
||||
}
|
||||
break;
|
||||
|
||||
@ -384,6 +386,7 @@ void LogLineBox::setMode(LogLineBox::Mode mode)
|
||||
line_down_label->hide();
|
||||
line_position_bar->hide();
|
||||
line_description_label->hide();
|
||||
line_outcue_label->hide();
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -397,6 +400,7 @@ void LogLineBox::setMode(LogLineBox::Mode mode)
|
||||
line_down_label->hide();
|
||||
line_position_bar->hide();
|
||||
line_description_label->hide();
|
||||
line_outcue_label->hide();
|
||||
line_comment_label->setGeometry(5,18,sizeHint().width()-10,30);
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user