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:
Fred Gleason 2022-09-27 16:04:43 -04:00
parent 634a837094
commit b18e1dbca8
2 changed files with 7 additions and 0 deletions

View File

@ -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.

View File

@ -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;
}