mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-19 22:48:01 +02:00
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:
parent
30e649413d
commit
f1da866fc0
@ -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.
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user