2022-09-16 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug on the 'Edit Log Marker' dialog in rdlogedit(1) that
	made it limited the maximum length of the 'Label' field to 10
	characters.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2022-09-16 14:33:46 -04:00
parent 30e649413d
commit f1da866fc0
2 changed files with 6 additions and 2 deletions

View File

@ -23310,3 +23310,7 @@
2022-09-14 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdadmin(1) that could cause segfaults when adding
a new RSS feed.
2022-09-16 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug on the 'Edit Log Marker' dialog in rdlogedit(1) that
made it limited the maximum length of the 'Label' field to 10
characters.

View File

@ -47,8 +47,8 @@ EditMarker::EditMarker(QWidget *parent)
// Label
//
edit_label_edit=new QLineEdit(this);
edit_label_edit->setGeometry(10,156,100,18);
edit_label_edit->setMaxLength(10);
edit_label_edit->setGeometry(10,156,sizeHint().width()-200,18);
edit_label_edit->setMaxLength(64);
label=new QLabel(tr("Label"),this);
label->setFont(labelFont());
label->setGeometry(12,140,60,14);