mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-12-05 16:20:14 +01:00
Fixed bug in clock schedule rules where "or After" schedule codes
were not displayed correctly.
This commit is contained in:
@@ -64,7 +64,7 @@ RDSchedRulesList::RDSchedRulesList(QString clockname,RDConfig *config)
|
|||||||
min_wait[i] = q1->value(1).toInt();
|
min_wait[i] = q1->value(1).toInt();
|
||||||
not_after[i] = q1->value(2).toString();
|
not_after[i] = q1->value(2).toString();
|
||||||
or_after[i] = q1->value(3).toString();
|
or_after[i] = q1->value(3).toString();
|
||||||
or_after_II[i] = q1->value(3).toString();
|
or_after_II[i] = q1->value(4).toString();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
max_row[i] = 1;
|
max_row[i] = 1;
|
||||||
|
|||||||
@@ -146,7 +146,7 @@ editSchedCodeRules::editSchedCodeRules(Q3ListViewItem *item,
|
|||||||
}
|
}
|
||||||
comboBox_not_after->setCurrentText(item->text(3));
|
comboBox_not_after->setCurrentText(item->text(3));
|
||||||
comboBox_or_after->setCurrentText(item->text(4));
|
comboBox_or_after->setCurrentText(item->text(4));
|
||||||
comboBox_or_after->setCurrentText(item->text(5));
|
comboBox_or_after_II->setCurrentText(item->text(5));
|
||||||
|
|
||||||
label_description = new QLabel(this);
|
label_description = new QLabel(this);
|
||||||
label_description->setGeometry( QRect( 200, 40, 300, 40 ) );
|
label_description->setGeometry( QRect( 200, 40, 300, 40 ) );
|
||||||
|
|||||||
Reference in New Issue
Block a user