mirror of https://gitlab.com/basile.b/dexed.git
fix #27 - Messages associated to a DUB runnable are not cleared between two calls to "Run DUB single file package"
This commit is contained in:
parent
9550af9711
commit
b508a99162
|
@ -3,7 +3,7 @@
|
||||||
## Bugs fixed
|
## Bugs fixed
|
||||||
|
|
||||||
- DUB projects: dependencies specified with _path_ were not available for auto-completion, also improved the detection patterns so that the _path_ property work with more packages. (#29)
|
- DUB projects: dependencies specified with _path_ were not available for auto-completion, also improved the detection patterns so that the _path_ property work with more packages. (#29)
|
||||||
|
- DUB runnables: document specific messages were not cleared between two calls to "Run DUB single file package". (#27)
|
||||||
## Other
|
## Other
|
||||||
|
|
||||||
- Toolchain: removed the background tool _dastworx_ and replaced it with a library called _libdexed-d_. Although this will not change the user experience:
|
- Toolchain: removed the background tool _dastworx_ and replaced it with a library called _libdexed-d_. Although this will not change the user experience:
|
||||||
|
|
|
@ -3433,6 +3433,7 @@ begin
|
||||||
if fDoc.isNil then
|
if fDoc.isNil then
|
||||||
exit;
|
exit;
|
||||||
FreeRunnableProc;
|
FreeRunnableProc;
|
||||||
|
fMsgs.clearByData(fDoc);
|
||||||
fRunProc := TDexedProcess.Create(nil);
|
fRunProc := TDexedProcess.Create(nil);
|
||||||
if fDoc.fileName.fileExists then
|
if fDoc.fileName.fileExists then
|
||||||
fDoc.save
|
fDoc.save
|
||||||
|
|
Loading…
Reference in New Issue