mirror of https://gitlab.com/basile.b/dexed.git
fix wrong dialog kind used when saving doc as html
This commit is contained in:
parent
0408b6dd00
commit
1e6d30e0b5
|
@ -9,6 +9,7 @@ See [LDC announcement](https://forum.dlang.org/post/ssvxmrdpklhsrqlgrzas@forum.d
|
||||||
|
|
||||||
- Messages, when selected, the recently added _Search Results_ category could not be emptied.
|
- Messages, when selected, the recently added _Search Results_ category could not be emptied.
|
||||||
- Highlighter, `q"()"`, `q"[]"`, `q"<>"`, `q"{}>"` strings highlighting was broken.
|
- Highlighter, `q"()"`, `q"[]"`, `q"<>"`, `q"{}>"` strings highlighting was broken.
|
||||||
|
- HTML export, the dialog proposed to open a file, not to save one.
|
||||||
|
|
||||||
# v3.9.8
|
# v3.9.8
|
||||||
|
|
||||||
|
|
|
@ -2603,7 +2603,7 @@ begin
|
||||||
exit;
|
exit;
|
||||||
exp := TSynExporterHTML.Create(nil);
|
exp := TSynExporterHTML.Create(nil);
|
||||||
try
|
try
|
||||||
with TOpenDialog.Create(nil) do
|
with TSaveDialog.Create(nil) do
|
||||||
try
|
try
|
||||||
if Execute then
|
if Execute then
|
||||||
begin
|
begin
|
||||||
|
|
Loading…
Reference in New Issue