comparison main/MainWindow.cpp @ 251:f9b086788565

* Save alignments to session file. Needs much testing.
author Chris Cannam
date Tue, 29 Apr 2008 15:34:17 +0000
parents 9d772bee2095
children 6a6b5a1a6c67
comparison
equal deleted inserted replaced
250:e9f80e5d615f 251:f9b086788565
2727 } 2727 }
2728 2728
2729 void 2729 void
2730 MainWindow::propertyStacksResized(int width) 2730 MainWindow::propertyStacksResized(int width)
2731 { 2731 {
2732 std::cerr << "MainWindow::propertyStacksResized(" << width << ")" << std::endl; 2732 // std::cerr << "MainWindow::propertyStacksResized(" << width << ")" << std::endl;
2733 2733
2734 if (!m_playControlsSpacer) return; 2734 if (!m_playControlsSpacer) return;
2735 2735
2736 int spacerWidth = width - m_playControlsWidth - 4; 2736 int spacerWidth = width - m_playControlsWidth - 4;
2737 2737
2738 std::cerr << "resizing spacer from " << m_playControlsSpacer->width() << " to " << spacerWidth << std::endl; 2738 // std::cerr << "resizing spacer from " << m_playControlsSpacer->width() << " to " << spacerWidth << std::endl;
2739 2739
2740 m_playControlsSpacer->setFixedSize(QSize(spacerWidth, 2)); 2740 m_playControlsSpacer->setFixedSize(QSize(spacerWidth, 2));
2741 } 2741 }
2742 2742
2743 void 2743 void