mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Prevent scrolling/panning while button is down, make sure duration display goes back to normal
This commit is contained in:
parent
5e672eb651
commit
8599598607
@ -1577,6 +1577,7 @@ void gGraphView::keyReleaseEvent(QKeyEvent *event)
|
||||
m_graphs[m_graph_index]->mouseReleaseEvent(&mevent);
|
||||
|
||||
m_metaselect = false;
|
||||
timedRedraw(50);
|
||||
}
|
||||
#ifdef BROKEN_OPENGL_BUILD
|
||||
QWidget::keyReleaseEvent(event);
|
||||
@ -1677,6 +1678,7 @@ void gGraphView::wheelEvent(QWheelEvent *event)
|
||||
{
|
||||
// Hmm.. I could optionalize this to change mousewheel behaviour without affecting the scrollbar now..
|
||||
|
||||
if (m_button_down) return;
|
||||
if ((event->modifiers() & Qt::ControlModifier)) {
|
||||
int x = event->x();
|
||||
int y = event->y();
|
||||
|
@ -287,7 +287,7 @@ void gLineOverlaySummary::paint(QPainter &painter, gGraph &w, const QRegion ®
|
||||
|
||||
QString a;
|
||||
|
||||
if (w.graphView()->selectionInProgress()) {
|
||||
if (w.graphView()->selectionInProgress() || w.graphView()->metaSelect()) {
|
||||
|
||||
a = QObject::tr("Duration")+": "+w.selDurString();
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user