diff -r c810a11d11d9 -r 2cf3413b6ac9 ornamentedobj.cpp --- a/ornamentedobj.cpp Mon May 23 15:28:20 2005 +0000 +++ b/ornamentedobj.cpp Tue Sep 06 15:04:50 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() ); + } }