Accidentally removed the text stating that we're in remap mode, awaiting

a new key event.


git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@394 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2005-04-11 19:02:25 +00:00
parent 98ff3f1d8e
commit 93563f4929
1 changed files with 6 additions and 2 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: EventMappingDialog.cxx,v 1.4 2005-04-06 23:47:07 stephena Exp $
// $Id: EventMappingDialog.cxx,v 1.5 2005-04-11 19:02:25 stephena Exp $
//
// Based on code from ScummVM - Scumm Interpreter
// Copyright (C) 2002-2004 The ScummVM project
@ -97,7 +97,11 @@ void EventMappingDialog::startRemapping()
myCancelMapButton->setEnabled(true);
// And show a message indicating which key is being remapped
drawKeyMapping();
ostringstream buf;
buf << "Select a new event for the '"
<< EventHandler::ourActionList[ myActionSelected ].action
<< "' action";
myKeyMapping->setLabel(buf.str());
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -