mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-11 17:13:47 +02:00
2017-10-16 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in RDLibrary that prevented more than 64 characters from being entered for the 'Album' field [Github issue #000184].
This commit is contained in:
@@ -16153,3 +16153,6 @@
|
||||
the added Segue parameters to the 'Edit Dropbox' dialog.
|
||||
* Modified the 'Segue Length' control in the 'Edit Dropbox' dialog
|
||||
to take mS as units.
|
||||
2017-10-16 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in RDLibrary that prevented more than 64 characters
|
||||
from being entered for the 'Album' field [Github issue #000184].
|
||||
|
@@ -377,7 +377,7 @@ EditCart::EditCart(unsigned number,QString *path,bool new_cart,bool profile_rip,
|
||||
rdcart_controls.album_edit=new QLineEdit(this);
|
||||
rdcart_controls.album_edit->setGeometry(135,158,480,21);
|
||||
rdcart_controls.album_edit->setFont(line_edit_font);
|
||||
rdcart_controls.album_edit->setMaxLength(64);
|
||||
rdcart_controls.album_edit->setMaxLength(255);
|
||||
QLabel *rdcart_album_label=
|
||||
new QLabel(rdcart_controls.album_edit,tr("Al&bum:"),this);
|
||||
rdcart_album_label->setGeometry(10,158,120,21);
|
||||
|
Reference in New Issue
Block a user