| 407 | } |
| 408 | |
| 409 | void FramePlaybackWindow::seqTableCellChanged(int row,int col) |
| 410 | { |
| 411 | if (col == 1) //don't save any changes to the first column (0) |
| 412 | { |
| 413 | seqItems[row].maxLoops = Utility::ParseStringToNum(ui->tblSequence->item(row, col)->text()); |
| 414 | if (seqItems[row].maxLoops < 1) seqItems[row].maxLoops = 1; |
| 415 | } |
| 416 | } |
| 417 | |
| 418 | void FramePlaybackWindow::fillIDHash(SequenceItem &item) |
| 419 | { |