mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 16:43:35 +02:00
2022-07-27 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in the 'Software Authority' Switcher/GPIO driver that made it impossible to add switcher events in rdcatch(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -23200,3 +23200,6 @@
|
||||
2022-07-27 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in rdadmin(1) that permitted immutable switcher endpoint
|
||||
names to be edited.
|
||||
2022-07-27 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a regression in the 'Software Authority' Switcher/GPIO driver
|
||||
that made it impossible to add switcher events in rdcatch(1).
|
||||
|
@@ -27,7 +27,6 @@
|
||||
|
||||
#include "edit_switchevent.h"
|
||||
|
||||
//EditSwitchEvent::EditSwitchEvent(int id,std::vector<int> *adds,QWidget *parent)
|
||||
EditSwitchEvent::EditSwitchEvent(QWidget *parent)
|
||||
: RDDialog(parent)
|
||||
{
|
||||
|
@@ -421,8 +421,8 @@ void SoftwareAuthority::DispatchCommand()
|
||||
QString::asprintf("`NUMBER`=%d",f0[0].toInt());
|
||||
swa_next_endpt++;
|
||||
|
||||
if(f0[0].toInt()>swa_inputs) {
|
||||
swa_inputs=f0[0].toInt();
|
||||
if(f0[0].toInt()>swa_outputs) {
|
||||
swa_outputs=f0[0].toInt();
|
||||
}
|
||||
RDSqlQuery::apply(sql);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user