diff options
author | nyamatongwe <devnull@localhost> | 2011-07-10 11:35:30 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-07-10 11:35:30 +1000 |
commit | 7fa23e871a1bd9c1ec2f87188db85ec80ae4724e (patch) | |
tree | df381369996d2f114c853127a8561ab5f3c65f16 | |
parent | 9bcb63d1d2e507b110a91e58bcf2f1bbbb80f47f (diff) | |
download | scintilla-mirror-7fa23e871a1bd9c1ec2f87188db85ec80ae4724e.tar.gz |
Don't allow buffered drawing to be turned on as it doesn't work.
-rw-r--r-- | cocoa/ScintillaCocoa.mm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm index 1d6432b00..6f3e711a3 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -529,6 +529,9 @@ sptr_t ScintillaCocoa::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPar [[ContentView() window] makeFirstResponder:ContentView()]; break; + case SCI_SETBUFFEREDDRAW: + // Buffered drawing not supported on Cocoa + bufferedDraw = false; break; case WM_UNICHAR: |