diff options
author | Slávek Banko <[email protected]> | 2016-10-09 16:19:21 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-10-09 16:19:34 +0200 |
commit | c8729b7ed12cdaf8914afd07685b576dcda8b331 (patch) | |
tree | f45953c4705f55918c59bce38b0812f0ad176124 | |
parent | bad078e7b6e768652ca0770a6addd53453d9a8d0 (diff) | |
download | k9copy-c8729b7ed12cdaf8914afd07685b576dcda8b331.tar.gz k9copy-c8729b7ed12cdaf8914afd07685b576dcda8b331.zip |
Fix initial increment for chapters from prior commitr14.0.4
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 87234f93be1097ee682fbc20422ae3a07892cb30)
-rw-r--r-- | k9author/k9newtitle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/k9author/k9newtitle.cpp b/k9author/k9newtitle.cpp index 6108eb4..4b8744c 100644 --- a/k9author/k9newtitle.cpp +++ b/k9author/k9newtitle.cpp @@ -74,7 +74,7 @@ void k9NewTitle::bAddClicked() { m_k9Import->getRoot()->listView()->setColumnWidthMode(0,TQListView::Maximum); item->setText(1,t.addSecs(fileInfo.getDuration()).toString("hh:mm:ss")); - double increment = 5*60*60; + double increment = 5*60; int maxCh; if (rbLength->isOn()) { TQTime t; |