Fix line cursor to mouse cursor sync

This commit is contained in:
Mark Watkins 2014-08-06 13:30:47 +10:00
parent 81bbe323ef
commit 0b4a41a9c5
3 changed files with 5 additions and 5 deletions

View File

@ -671,7 +671,7 @@ void gGraph::timedRedraw(int ms)
m_graphview->timedRedraw(ms);
}
qint64 gGraph::currentTime() const
double gGraph::currentTime() const
{
return m_graphview->currentTime();
}

View File

@ -104,7 +104,7 @@ class gGraph : public QObject
//! \brief Returns true if none of the included layers have data attached
bool isEmpty();
qint64 currentTime() const;
double currentTime() const;
//! \brief Add Layer l to graph object, allowing you to specify position,
@ -350,7 +350,7 @@ class gGraph : public QObject
qint64 m_selectedDuration;
qint64 m_currentTime;
double m_currentTime;
qint64 m_clickTime;
QString m_selDurString;

View File

@ -375,9 +375,9 @@ class gGraphView
void setMetaSelect(bool b) { m_metaselect = b; }
//! \brief The current time the mouse pointer is hovering over
inline qint64 currentTime() { return m_currenttime; }
inline double currentTime() { return m_currenttime; }
inline void setCurrentTime(qint64 time) { m_currenttime = time; }
inline void setCurrentTime(double time) { m_currenttime = time; }
inline QPoint currentMousePos() const { return m_mouse; }