From 48fc6ced8209167a0b65b46ca9d08e7782d63a7b Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Fri, 18 Jul 2008 23:47:35 +0000 Subject: [PATCH] handled rename of up/down arrow graphics git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1349 0778d3d1-df1d-0410-868b-ea421aaaa00d --- src/gui/widgets/effect_view.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/widgets/effect_view.cpp b/src/gui/widgets/effect_view.cpp index 852a52bab..635674ae6 100644 --- a/src/gui/widgets/effect_view.cpp +++ b/src/gui/widgets/effect_view.cpp @@ -221,10 +221,10 @@ void effectView::contextMenuEvent( QContextMenuEvent * ) { QPointer contextMenu = new captionMenu( getEffect()->displayName() ); - contextMenu->addAction( embed::getIconPixmap( "arp_up_on" ), + contextMenu->addAction( embed::getIconPixmap( "arp_up" ), tr( "Move &up" ), this, SLOT( moveUp() ) ); - contextMenu->addAction( embed::getIconPixmap( "arp_down_on" ), + contextMenu->addAction( embed::getIconPixmap( "arp_down" ), tr( "Move &down" ), this, SLOT( moveDown() ) ); contextMenu->addSeparator();