2019-12-03 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdgpimon(1) that caused GPIO cart displays to
	fail to accurately reflect current state.
This commit is contained in:
Fred Gleason 2019-12-03 19:13:49 -05:00
parent cf13fe1503
commit b6e37abce0
2 changed files with 3 additions and 2 deletions

View File

@ -19287,3 +19287,6 @@
2019-12-03 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdcatch(1) that caused DOW flags to fail to be
updated correctly on the event list after making a change.
2019-12-03 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdgpimon(1) that caused GPIO cart displays to
fail to accurately reflect current state.

View File

@ -41,7 +41,6 @@ GpiLabel::GpiLabel(QWidget *parent)
QPalette p=palette();
p.setColor(QPalette::Active,QColorGroup::Foreground,Qt::darkGreen);
p.setColor(QPalette::Inactive,QColorGroup::Foreground,Qt::darkGreen);
p.setColor(QPalette::Disabled,QColorGroup::Foreground,Qt::darkGreen);
gpi_oncart_label=new QLabel(this);
gpi_oncart_label->setGeometry(0,33,59,16);
gpi_oncart_label->setFont(labelFont());
@ -53,7 +52,6 @@ GpiLabel::GpiLabel(QWidget *parent)
//
p.setColor(QPalette::Active,QColorGroup::Foreground,Qt::darkRed);
p.setColor(QPalette::Inactive,QColorGroup::Foreground,Qt::darkRed);
p.setColor(QPalette::Disabled,QColorGroup::Foreground,Qt::darkRed);
gpi_offcart_label=new QLabel(this);
gpi_offcart_label->setGeometry(0,49,59,16);
gpi_offcart_label->setFont(labelFont());