diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-04-29 17:33:33 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-04-29 17:52:43 +0200 |
commit | e39f5fa5d6b1b09df16271cabb1dda5d42c0b980 (patch) | |
tree | cb3aff4a8c04c6b39c014a37e0683fd5b7817d94 /src/Main/Forms/MountOptionsDialog.h | |
parent | 7a842266b3f2e69d1706aec3039b661e3a5b25dd (diff) | |
download | VeraCrypt-e39f5fa5d6b1b09df16271cabb1dda5d42c0b980.tar.gz VeraCrypt-e39f5fa5d6b1b09df16271cabb1dda5d42c0b980.zip |
MacOSX: support pasting values to password fields using keyboard (CMD+V and CMD+A now working properly). This make using password managers with VeraCrypt easier.
Diffstat (limited to 'src/Main/Forms/MountOptionsDialog.h')
-rw-r--r-- | src/Main/Forms/MountOptionsDialog.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Main/Forms/MountOptionsDialog.h b/src/Main/Forms/MountOptionsDialog.h index 4a2b38be..6366ce85 100644 --- a/src/Main/Forms/MountOptionsDialog.h +++ b/src/Main/Forms/MountOptionsDialog.h @@ -24,6 +24,10 @@ namespace VeraCrypt public: MountOptionsDialog (wxWindow* parent, MountOptions &options, const wxString &title = wxEmptyString, bool disableMountOptions = false); void OnShow (); + +#ifdef TC_MACOSX + virtual bool ProcessEvent(wxEvent& event); +#endif protected: void OnInitDialog (wxInitDialogEvent& event); |