mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-19 00:51:13 +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:
@@ -23310,3 +23310,7 @@
|
|||||||
2022-09-14 Fred Gleason <fredg@paravelsystems.com>
|
2022-09-14 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a bug in rdadmin(1) that could cause segfaults when adding
|
* Fixed a bug in rdadmin(1) that could cause segfaults when adding
|
||||||
a new RSS feed.
|
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
|
// Label
|
||||||
//
|
//
|
||||||
edit_label_edit=new QLineEdit(this);
|
edit_label_edit=new QLineEdit(this);
|
||||||
edit_label_edit->setGeometry(10,156,100,18);
|
edit_label_edit->setGeometry(10,156,sizeHint().width()-200,18);
|
||||||
edit_label_edit->setMaxLength(10);
|
edit_label_edit->setMaxLength(64);
|
||||||
label=new QLabel(tr("Label"),this);
|
label=new QLabel(tr("Label"),this);
|
||||||
label->setFont(labelFont());
|
label->setFont(labelFont());
|
||||||
label->setGeometry(12,140,60,14);
|
label->setGeometry(12,140,60,14);
|
||||||
|
Reference in New Issue
Block a user