mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-25 08:56:00 +02:00
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:
parent
cf13fe1503
commit
b6e37abce0
@ -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.
|
||||
|
@ -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());
|
||||
|
Loading…
x
Reference in New Issue
Block a user