diff -r c810a11d11d9 -r 4244bcd9e6ea ornamentedobj.cpp --- a/ornamentedobj.cpp Mon May 23 15:28:20 2005 +0000 +++ b/ornamentedobj.cpp Thu Sep 22 12:56:05 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() ); + } }