mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50: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);
|
||||
}
|
||||
|
||||
qint64 gGraph::currentTime() const
|
||||
double gGraph::currentTime() const
|
||||
{
|
||||
return m_graphview->currentTime();
|
||||
}
|
||||
|
@ -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;
|
||||
|
@ -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; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user