Parital fix #212 stale gutter, anyTargetChanged->true#239
Parital fix #212 stale gutter, anyTargetChanged->true#239fredsa wants to merge 2 commits intosehugg:masterfrom
Conversation
|
I don't see any downside to always refreshing the views. Perhaps there's performance reason to do this on slower platforms I'm not aware of? Happy to hear your thoughts on what's needed. |
ec7e721 to
75d7183
Compare
|
The intent was to keep the emulator from reloading while editing comments and whitespace. The gutter sometimes gets out of sync but only temporarily, are you seeing differently? |
|
It's not only about resetting the emulator, when you have multiple object files like C or CA65 it takes a relatively long time to do a build, so you only run the full build if an object file changes. Unfortunately the debug info doesn't run until the full build completes. I never worried about it since you'll eventually sync up when you make a proper change. |
Comment out implementation and have anyTargetChanged always return true. Holding off on deleting the function entirely, in case it needs to be brought back in the immediate future.
|
Ack. I hadn't realized the behavior for multi file C projects. How's this updated PR? For DASM, on source code only change:
For multi-file C, behavior is still the same:
|

Comment out implementation and have anyTargetChanged always return true.
Holding off on deleting the function
entirely, in case it needs to be brought
back in the immediate future.