From 93a456c67a5beb19da21c0fbc88ca7cf0c145a22 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Fri, 7 Aug 2009 17:44:49 +0200 Subject: [PATCH] MainWindow: removed HQ mode button Switching to HQ mode in standard workflow doesn't make much sense and is likely to cause problems. Therefore remove the HQ mode button for for time being. One can still export projects in high(er) quality. (cherry picked from commit d66c71ebf8de34d39948ed0f8538b774c91be5d0) --- src/gui/song_editor.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/gui/song_editor.cpp b/src/gui/song_editor.cpp index 569444f9e..9a81b8ae3 100644 --- a/src/gui/song_editor.cpp +++ b/src/gui/song_editor.cpp @@ -117,10 +117,9 @@ songEditor::songEditor( song * _song, songEditor * & _engine_ptr ) : "should be played within a minute (or how many measures " "should be played within four minutes)." ) ); - int col = engine::getMainWindow()->addWidgetToToolBar( m_tempoSpinBox, - 0 ); - + engine::getMainWindow()->addWidgetToToolBar( m_tempoSpinBox, 0 ); +#if 0 toolButton * hq_btn = new toolButton( embed::getIconPixmap( "hq_mode" ), tr( "High quality mode" ), NULL, NULL, tb ); @@ -129,7 +128,7 @@ songEditor::songEditor( song * _song, songEditor * & _engine_ptr ) : this, SLOT( setHighQuality( bool ) ) ); hq_btn->setFixedWidth( 42 ); engine::getMainWindow()->addWidgetToToolBar( hq_btn, 1, col ); - +#endif engine::getMainWindow()->addSpacingToToolBar( 10 );