diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2013-03-13 10:21:33 +1100 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2013-03-13 10:21:33 +1100 |
commit | 3ee697fc002bd2ac942ce40b32e317f431974b46 (patch) | |
tree | a65eb47622ac39953c58f937f291f3bb3830df1f /gtk | |
parent | 12e6f6374e791c61e778994475d224054aa01520 (diff) | |
download | scintilla-mirror-3ee697fc002bd2ac942ce40b32e317f431974b46.tar.gz |
Implement high-priority idle work on Cocoa to avoid abandoning paints in some situations.
Rename IdleStyling to IdleWork.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 2e48d5e46..20c398b86 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -2761,7 +2761,7 @@ gboolean ScintillaGTK::StyleIdle(ScintillaGTK *sciThis) { #ifndef GDK_VERSION_3_6 gdk_threads_enter(); #endif - sciThis->IdleStyling(); + sciThis->IdleWork(); #ifndef GDK_VERSION_3_6 gdk_threads_leave(); #endif |