-
Notifications
You must be signed in to change notification settings - Fork 53
SCN_UPDATEUI populating notification.Updated #101
Comments
Most likely, and I would suspect the alignment of the The Notice that the
Fun experiment: debug a 64-bit build of your .NET plugin, but this time inspect the value of the |
@rdipardo so excuse the silly simple question, but I'm just not that familiar with C#. Is this as easy as just changing the Cheers. |
I seem to have pulled it off with only trivial changes to the |
You read my mind. I have a primitive synchronize on vertical scroll implemented in my fork that I was trying to clean up before submitting a PR to NppMarkdownPanel. Looks like you beat me to it! Cheers. |
I just followed the linked issue to this thread and put 2 and 2 together. Happy to do it, since frankly it's the .NET plugin developers who need the most help. Consider that the last major change to Scintilla's notification |
Thank you @rdipardo for the troubleshoot, test and commit that determined the [bug](kbilsted/NotepadPlusPlusPluginPack.Net#101) in NotepadPlusPlusPluginPack.Net related to `ScNotification` field sizes. This commit does make updates to the 'PluginInfrastructure/Scintilla_iface.cs' file that are not yet reflected in the template at NotepadPlusPlusPluginPack.Net.
I have:
Trying to match if the notification
updated
field is equal toSC_UPDATE_V_SCROLL
.Debugging shows me that when vertically scrolling, the value of
notification.Updated
is0
. Running a PythonScript to show me the value it sees in theSCN_UPDATEUI
message,updated
field during vertical scrolling - it correctly shows4
.It could be:
Updated
field ofScNotification
is not getting updated properly duringSCN_UPDATEUI
notification events.Cheers.
The text was updated successfully, but these errors were encountered: