Community
Participate
Working Groups
- open git log UI - click on the "compare" button in actions column of the git log page to look at the diffs between current and the commit - press the back button You'll be prompted about unsaved changes.
might be wrong usage of editor container .
The reason was that I was using editorContainer.getEditorWidget().setText() directly , which caused the dirty mark to true. I am using editorContainer.onInputChange() now . It resolves the dirty mark issue but seems that this function is creating a new styler every time.The new styler is adding lineStyle listener to the editor so it is competing with the diff styler. I have to work it around by removing the lineStyle listener before I call editorContainer.onInputChange(). I will wait until the final solution of bug 341141.
fixed with c7f2525f52eff86358714d20a2815b282b36eb34. I am only calling editorContainer.onInputChange() once now , so bug 341141 is no longer blocking me.