mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-26 14:32:04 +02:00
Merge branch 'deltecent-setyear'
This commit is contained in:
commit
c9e9dccbfd
@ -19096,3 +19096,6 @@
|
||||
2019-09-09 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Added a 'ServiceTimeout=' directive to the '[Tuning]' section
|
||||
of rd.conf(5).
|
||||
2019-09-09 Patrick Linstruth <patrick@deltecent.com>
|
||||
* Fixed a bug in rdlibrary(1) multi-edit where an empty 'Year
|
||||
Released' field clears the date from selected carts.
|
||||
|
@ -949,7 +949,9 @@ void EditCart::okData()
|
||||
if(!rdcart_controls.title_edit->text().stripWhiteSpace().isEmpty()) {
|
||||
rdcart_cart_medit->setTitle(rdcart_controls.title_edit->text());
|
||||
}
|
||||
rdcart_cart_medit->setYear(rdcart_controls.year_edit->text().toInt());
|
||||
if(rdcart_controls.year_edit->text().toInt()) {
|
||||
rdcart_cart_medit->setYear(rdcart_controls.year_edit->text().toInt());
|
||||
}
|
||||
if(!rdcart_controls.artist_edit->text().stripWhiteSpace().isEmpty()) {
|
||||
rdcart_cart_medit->setArtist(rdcart_controls.artist_edit->text());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user