summaryrefslogtreecommitdiffstats
path: root/newmoviewizard.cpp
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2014-04-04 16:43:17 +0200
committerArno <am@disconnect.de>2014-04-04 16:43:17 +0200
commit0aff6a93221bfb6408e4fcc2a1fb966c111ac9ae (patch)
treedff7dd2f5c4f21f217fef44a455d46b6b9a84b80 /newmoviewizard.cpp
parente3a50e6e5a112994c340accf85a2a5cc62a25718 (diff)
downloadSheMov-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.cpp2
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"));