-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rpsl_explorer FileMonitor does not notify on file change #33
Comments
Which text-editors did you experience this with? For example, updates from Notepad++ seem to work just fine on my side. |
@FlorianHerickAMD: Additionally, I have conducted a second test on a different machine, and the results align with the previous findings. |
@FlorianHerickAMD: Scenario to reproduce:
Root cause: |
The issue persists in both Debug and Release configurations. |
There is a missing
SHCNRF_ShellLevel
flag here - in the type of events for which to receive notifications:RenderPipelineShaders/tools/rpsl_explorer/src/file_monitor.hpp
Lines 36 to 41 in 3118340
It is necessary to include it to capture changes made, e.g. from text-editors (considered as a
ShellLevel
source).Other, minor things:
UM_FILE_CHANGED
should be type ofUINT
;ILCreateFromPathA
is not checked (in case of0
);m_registerIDs
- so it would be wrongly considered againPlease find my snipped with corrected version:
The text was updated successfully, but these errors were encountered: