2018-08-16 Fred Gleason <fredg@paravelsystems.com>

* Fixed a rendering error in the 'Edit RDAirPlay dialog in
	rdadmin(1).
This commit is contained in:
Fred Gleason
2018-08-16 17:21:13 +00:00
parent f59d5f2396
commit c7335075f2
2 changed files with 8 additions and 1 deletions

View File

@@ -17449,3 +17449,6 @@
recognized.
2018-08-16 Fred Gleason <fredg@paravelsystems.com>
* Added a database attributes check to rddbmgr(8).
2018-08-16 Fred Gleason <fredg@paravelsystems.com>
* Fixed a rendering error in the 'Edit RDAirPlay dialog in
rdadmin(1).

View File

@@ -1286,7 +1286,11 @@ void EditRDAirPlay::paintEvent(QPaintEvent *e)
{
QPainter *p=new QPainter(this);
p->setPen(Qt::black);
p->drawRect(25,485,395,95);
p->drawLine(210,485,420,485); // Top
p->drawLine(25,495,25,580); // Left
p->drawLine(420,485,420,580); // Right
p->drawLine(25,580,65,580); // Left Bottom
p->drawLine(405,580,420,580); // Right Bottom
p->end();
delete p;
}