diff options
author | Arno <am@disconnect.de> | 2010-05-30 10:47:41 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2010-05-30 10:47:41 +0200 |
commit | daa5c2eb9148b9175302228a6bae257e84881846 (patch) | |
tree | fe071f31f4c49f9d621276cd7a6e2e290dc1f653 | |
parent | 9a1ec955d9ce339e6b89714488bb866ae43bb397 (diff) | |
download | SheMov-daa5c2eb9148b9175302228a6bae257e84881846.tar.gz SheMov-daa5c2eb9148b9175302228a6bae257e84881846.tar.bz2 SheMov-daa5c2eb9148b9175302228a6bae257e84881846.zip |
Bugfix: Data corruption in ArchiveItemInfoEdit
Allow more than 10 Dvds in dvd spinbox of ArchiveItemInfoEdit.
-rw-r--r-- | archiveiteminfoedit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archiveiteminfoedit.cpp b/archiveiteminfoedit.cpp index 59ab55b..70e5afe 100644 --- a/archiveiteminfoedit.cpp +++ b/archiveiteminfoedit.cpp @@ -68,7 +68,7 @@ ArchiveItemInfoEdit::ArchiveItemInfoEdit(QWidget *parent) : QWidget(parent){ QLabel *dvdLabel = new QLabel(tr("DVD no.")); mDvd = new QSpinBox; mDvd->setMinimum(-1); - mDvd->setMaximum(10); + mDvd->setMaximum(1000); miscInfoLayout->addWidget(dvdLabel); miscInfoLayout->addWidget(mDvd); miscInfoLayout->addStretch(); |