comparison widgets/Pane.cpp @ 67:c4fff27cd651

* Add auto-normalize option to waveform layer * Various fixes to display of dB/metered levels in waveform layer. Still need to fix to ensure they don't waste half the display * Add mix channels option to waveform layer * Use multiple transforms menus, one per transform type -- not sure about this * Give centroid plugin two outputs, for log and linear frequency weightings * Show scale units from plugin in time-value display
author Chris Cannam
date Wed, 29 Mar 2006 12:35:17 +0000
parents d072a3b59a0d
children 193b569a975f
comparison
equal deleted inserted replaced
66:e9eac9368e29 67:c4fff27cd651
654 } 654 }
655 } 655 }
656 656
657 //!!! if (mode != ViewManager::DrawMode) { 657 //!!! if (mode != ViewManager::DrawMode) {
658 658
659 if (!m_manager->isPlaying()) {
660
659 if (getSelectedLayer()) { 661 if (getSelectedLayer()) {
660 662
661 bool previouslyIdentifying = m_identifyFeatures; 663 bool previouslyIdentifying = m_identifyFeatures;
662 m_identifyFeatures = true; 664 m_identifyFeatures = true;
663 665
664 if (m_identifyFeatures != previouslyIdentifying || 666 if (m_identifyFeatures != previouslyIdentifying ||
665 m_identifyPoint != prevPoint) { 667 m_identifyPoint != prevPoint) {
666 update(); 668 update();
667 } 669 }
668 } 670 }
671
672 }
669 673
670 // } 674 // }
671 675
672 return; 676 return;
673 } 677 }