| 106 | |
| 107 | double BufferPreviewer::cursorPos() const { return m_cursorPos; } |
| 108 | void BufferPreviewer::setCursorPos(double pos) |
| 109 | { |
| 110 | if(pos < 0.0 || pos > 1.0 || pos == m_cursorPos) |
| 111 | return; |
| 112 | |
| 113 | m_cursorPos = pos; |
| 114 | update(); |
| 115 | } |
| 116 | |
| 117 | int BufferPreviewer::verticalSpacing() const { return m_verticalSpacing; } |
| 118 |
no outgoing calls
no test coverage detected