comparison framework/MainWindowBase.cpp @ 129:df5f16b3c925

* Fix two problems reported by Matthias in the data editor window: - highlighted row was incorrect (it was highlighting the row for the next item after the current position, not the one before it as it should be) - making a row current moved the centre frame of the view, but did not change the playback position as it should do
author Chris Cannam
date Thu, 26 Jun 2008 12:41:23 +0000
parents 09e6016c5436
children 4c9c04645685
comparison
equal deleted inserted replaced
128:09e6016c5436 129:df5f16b3c925
1998 1998
1999 connect(dialog, 1999 connect(dialog,
2000 SIGNAL(scrollToFrame(unsigned long)), 2000 SIGNAL(scrollToFrame(unsigned long)),
2001 m_viewManager, 2001 m_viewManager,
2002 SLOT(setGlobalCentreFrame(unsigned long))); 2002 SLOT(setGlobalCentreFrame(unsigned long)));
2003
2004 connect(dialog,
2005 SIGNAL(scrollToFrame(unsigned long)),
2006 m_viewManager,
2007 SLOT(setPlaybackFrame(unsigned long)));
2003 } 2008 }
2004 2009
2005 void 2010 void
2006 MainWindowBase::previousPane() 2011 MainWindowBase::previousPane()
2007 { 2012 {