mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Fix line cursor to mouse cursor sync
This commit is contained in:
parent
81bbe323ef
commit
0b4a41a9c5
@ -671,7 +671,7 @@ void gGraph::timedRedraw(int ms)
|
|||||||
m_graphview->timedRedraw(ms);
|
m_graphview->timedRedraw(ms);
|
||||||
}
|
}
|
||||||
|
|
||||||
qint64 gGraph::currentTime() const
|
double gGraph::currentTime() const
|
||||||
{
|
{
|
||||||
return m_graphview->currentTime();
|
return m_graphview->currentTime();
|
||||||
}
|
}
|
||||||
|
@ -104,7 +104,7 @@ class gGraph : public QObject
|
|||||||
//! \brief Returns true if none of the included layers have data attached
|
//! \brief Returns true if none of the included layers have data attached
|
||||||
bool isEmpty();
|
bool isEmpty();
|
||||||
|
|
||||||
qint64 currentTime() const;
|
double currentTime() const;
|
||||||
|
|
||||||
|
|
||||||
//! \brief Add Layer l to graph object, allowing you to specify position,
|
//! \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_selectedDuration;
|
||||||
|
|
||||||
qint64 m_currentTime;
|
double m_currentTime;
|
||||||
qint64 m_clickTime;
|
qint64 m_clickTime;
|
||||||
|
|
||||||
QString m_selDurString;
|
QString m_selDurString;
|
||||||
|
@ -375,9 +375,9 @@ class gGraphView
|
|||||||
void setMetaSelect(bool b) { m_metaselect = b; }
|
void setMetaSelect(bool b) { m_metaselect = b; }
|
||||||
|
|
||||||
//! \brief The current time the mouse pointer is hovering over
|
//! \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; }
|
inline QPoint currentMousePos() const { return m_mouse; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user