Index: /trunk/src/gui/src/MainForm.cpp
===================================================================
--- /trunk/src/gui/src/MainForm.cpp	(revision 2381)
+++ /trunk/src/gui/src/MainForm.cpp	(revision 2382)
@@ -451,6 +451,9 @@
 	HydrogenApp::get_instance()->getSongEditorPanel()->updatePositionRuler();
 	Hydrogen::get_instance()->m_timelinetagvector.clear();
+
+        // update director tags
 	EventQueue::get_instance()->push_event( EVENT_METRONOME, 2 );
-	EventQueue::get_instance()->push_event( EVENT_METRONOME, 3 );
+        // update director songname
+        EventQueue::get_instance()->push_event( EVENT_METRONOME, 3 );
 }
 
Index: /trunk/src/gui/src/Director.h
===================================================================
--- /trunk/src/gui/src/Director.h	(revision 2381)
+++ /trunk/src/gui/src/Director.h	(revision 2382)
@@ -53,5 +53,5 @@
 	private:
                 QTimer *timer;
-                QColor __p_color;
+                QColor __color;
 //		QPixmap *m_pBackground;
                 QPalette __blinkerPalette;
Index: /trunk/src/gui/src/Director.cpp
===================================================================
--- /trunk/src/gui/src/Director.cpp	(revision 2381)
+++ /trunk/src/gui/src/Director.cpp	(revision 2382)
@@ -130,5 +130,5 @@
 	}
 	if ( nValue == 1 ) {	//foregroundcolor "rect" for first blink
-                __p_color = QColor( 255, 50, 1 ,255 );
+                __color = QColor( 255, 50, 1 ,255 );
 		p_counter = 1;		
 	}
@@ -138,5 +138,5 @@
                         p_wechselblink = width() * 52.5/100;
 
-                __p_color = QColor( 24, 250, 31, 255 );
+                __color = QColor( 24, 250, 31, 255 );
 
 	}
@@ -163,5 +163,5 @@
 void Director::updateMetronomBackground()
 {
-        __p_color.setAlpha( 0 );
+        __color.setAlpha( 0 );
         timer->stop();
 	update();
@@ -181,5 +181,5 @@
 	//draw the metronome
 	painter.setPen( QPen(QColor( 249, 235, 116, 200 ) ,1 , Qt::SolidLine ) );
-        painter.setBrush( __p_color );
+        painter.setBrush( __color );
 	painter.drawRect (  p_wechselblink, height() * 25/100, width() * 42.5/100, height() * 35/100);
 
