diff options
| author | nyamatongwe <devnull@localhost> | 2009-07-23 05:05:11 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2009-07-23 05:05:11 +0000 | 
| commit | 81c08be7a9e72d4cfb6f288799cd5b131cd260dd (patch) | |
| tree | b2fbcc526e06be86708017b66af5feb889e79def | |
| parent | 9c733f654de0075714f118d890fde8481914a1f1 (diff) | |
| download | scintilla-mirror-81c08be7a9e72d4cfb6f288799cd5b131cd260dd.tar.gz | |
Fix for Bug #2825485, paste in read-only mode sends EN_CHANGE despite no
change taking place.
| -rw-r--r-- | win32/ScintillaWin.cxx | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 1b014e0a2..3fd2831c5 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -1436,7 +1436,6 @@ void ScintillaWin::Paste() {  		}  	}  	::CloseClipboard(); -	NotifyChange();  	Redraw();  } | 
