diff options
author | Arno <am@disconnect.de> | 2014-04-04 16:43:17 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2014-04-04 16:43:17 +0200 |
commit | 0aff6a93221bfb6408e4fcc2a1fb966c111ac9ae (patch) | |
tree | dff7dd2f5c4f21f217fef44a455d46b6b9a84b80 /newmoviewizard.cpp | |
parent | e3a50e6e5a112994c340accf85a2a5cc62a25718 (diff) | |
download | SheMov-0aff6a93221bfb6408e4fcc2a1fb966c111ac9ae.tar.gz SheMov-0aff6a93221bfb6408e4fcc2a1fb966c111ac9ae.tar.bz2 SheMov-0aff6a93221bfb6408e4fcc2a1fb966c111ac9ae.zip |
Fix SeriesPartNo == 0
Fix sorting in ArchiveTree and make it possible to enter zero in
NewMovieWizard.
Diffstat (limited to 'newmoviewizard.cpp')
-rw-r--r-- | newmoviewizard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newmoviewizard.cpp b/newmoviewizard.cpp index a1ab2f3..0fe0bae 100644 --- a/newmoviewizard.cpp +++ b/newmoviewizard.cpp @@ -300,7 +300,7 @@ void MovieInfoPage::setupGui(){ QLabel *l3 = new QLabel(tr("&Series no.")); mSeriesNo = new QSpinBox; l3->setBuddy(mSeriesNo); - mSeriesNo->setMinimum(1); + mSeriesNo->setMinimum(0); numberLayout->addWidget(l3); numberLayout->addWidget(mSeriesNo); QLabel *l5 = new QLabel(tr("&Quality")); |