From d4680ba21dcf82757e8f361f75c1852f6537ba47 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Fri, 17 Apr 2009 12:24:54 +0200 Subject: [PATCH] AutomationEditor: fixed window title As of commit 91f3db7b window title of automation editor has been in uppercase letters which is wrong. --- src/gui/automation_editor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/automation_editor.cpp b/src/gui/automation_editor.cpp index 22e3fdec9..84f00d225 100644 --- a/src/gui/automation_editor.cpp +++ b/src/gui/automation_editor.cpp @@ -387,7 +387,7 @@ void automationEditor::setCurrentPattern( automationPattern * _new_pattern ) if( validPattern() == false ) { - setWindowTitle( tr( "AUTOMATION EDITOR - no pattern" ) ); + setWindowTitle( tr( "Automation Editor - no pattern" ) ); m_minLevel = m_maxLevel = m_scrollLevel = 0; m_step = 1; resizeEvent( NULL ); @@ -403,7 +403,7 @@ void automationEditor::setCurrentPattern( automationPattern * _new_pattern ) // of levels and so on...) resizeEvent( NULL ); - setWindowTitle( tr( "AUTOMATION EDITOR - %1" ).arg( + setWindowTitle( tr( "Automation Editor - %1" ).arg( m_pattern->name() ) ); update();