diff -r c810a11d11d9 -r fbb8c8560551 ornamentedobj.cpp --- a/ornamentedobj.cpp Mon May 23 15:28:20 2005 +0000 +++ b/ornamentedobj.cpp Tue Jan 03 09:44:41 2006 +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() ); + } }