diff -r e44baadd4958 -r 72cc3873306a ornamentedobj.cpp --- a/ornamentedobj.cpp Thu Sep 01 15:35:18 2005 +0000 +++ b/ornamentedobj.cpp Mon Sep 05 11:56:31 2005 +0000 @@ -199,13 +199,16 @@ void OrnamentedObj::updateNoteFlag() { - // text in NoteEditor has changed, notify MapEditor - mapEditor->setChanged(); + if (selected) + { + // text in NoteEditor has changed, notify MapEditor + mapEditor->setChanged(); - // save text - setNote( textEditor->getText() ); + // save text + setNote( textEditor->getText() ); - // save font - note.setFontHint (textEditor->getFontHint() ); + // save font + note.setFontHint (textEditor->getFontHint() ); + } }