comparison widgets/Fader.cpp @ 860:4a5d144bd5d0 tonioni

Merge from default branch
author Chris Cannam
date Tue, 09 Sep 2014 16:36:21 +0100
parents 44675ab217a3
children 4a578a360011
comparison
equal deleted inserted replaced
842:8432d2551fb2 860:4a5d144bd5d0
46 QWidget(parent), 46 QWidget(parent),
47 m_withoutKnob(withoutKnob), 47 m_withoutKnob(withoutKnob),
48 m_value(1.0), 48 m_value(1.0),
49 m_peakLeft(0.0), 49 m_peakLeft(0.0),
50 m_peakRight(0.0), 50 m_peakRight(0.0),
51 m_mousePressed(false) 51 m_mousePressed(false),
52 m_mousePressX(0),
53 m_mousePressValue(0)
52 { 54 {
53 setMinimumSize(116, 23); 55 setMinimumSize(116, 23);
54 setMaximumSize(116, 23); 56 setMaximumSize(116, 23);
55 resize(116, 23); 57 resize(116, 23);
56 58