File dialog: Propagate the AutoExt property to the FileChooser.

[GB.FORM.DIALOG]
* NEW: File dialog: Propagate the AutoExt property to the FileChooser.
This commit is contained in:
gambas 2021-02-04 13:28:37 +01:00
parent f3ce8abe4c
commit 7c0af8a41f

View file

@ -130,3 +130,9 @@ Public Sub Form_Close()
Dialog.Key = ""
End
Public Sub chkAutoExt_Click()
fchChoose.AutoExt = chkAutoExt.Value
End