diff options
author | El Mostafa Idrassi <el-mostafa.idrassi@prestalab.net> | 2019-10-15 23:43:34 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-10-16 00:43:34 +0200 |
commit | c90b45f88cf38eba34e8072ccc1771471a37f581 (patch) | |
tree | 155c0cb691dc240698a7d2a4f3251d123486ee04 | |
parent | 2675a9c60e592607f2704f69987f8b4623ca7d69 (diff) | |
download | VeraCrypt-c90b45f88cf38eba34e8072ccc1771471a37f581.tar.gz VeraCrypt-c90b45f88cf38eba34e8072ccc1771471a37f581.zip |
Fixed drag and drop not showing correct path, specifically under GTK-3. (#520)
-rw-r--r-- | src/Main/Forms/KeyfilesPanel.cpp | 2 | ||||
-rw-r--r-- | src/Main/Forms/MainFrame.cpp | 2 | ||||
-rw-r--r-- | src/Main/Forms/VolumePasswordPanel.cpp | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/src/Main/Forms/KeyfilesPanel.cpp b/src/Main/Forms/KeyfilesPanel.cpp index 71077e81..c1f26d86 100644 --- a/src/Main/Forms/KeyfilesPanel.cpp +++ b/src/Main/Forms/KeyfilesPanel.cpp @@ -59,10 +59,8 @@ namespace VeraCrypt SetDropTarget (new FileDropTarget (this)); KeyfilesListCtrl->SetDropTarget (new FileDropTarget (this)); -#ifdef TC_MACOSX foreach (wxWindow *c, GetChildren()) c->SetDropTarget (new FileDropTarget (this)); -#endif UpdateButtons(); } diff --git a/src/Main/Forms/MainFrame.cpp b/src/Main/Forms/MainFrame.cpp index ad5bf5b3..9abe2552 100644 --- a/src/Main/Forms/MainFrame.cpp +++ b/src/Main/Forms/MainFrame.cpp @@ -393,10 +393,8 @@ namespace VeraCrypt }; SetDropTarget (new FileDropTarget (this)); -#ifdef TC_MACOSX foreach (wxWindow *c, MainPanel->GetChildren()) c->SetDropTarget (new FileDropTarget (this)); -#endif // Volume history VolumeHistory::ConnectComboBox (VolumePathComboBox); diff --git a/src/Main/Forms/VolumePasswordPanel.cpp b/src/Main/Forms/VolumePasswordPanel.cpp index 2859762c..8d5e8bc5 100644 --- a/src/Main/Forms/VolumePasswordPanel.cpp +++ b/src/Main/Forms/VolumePasswordPanel.cpp @@ -159,10 +159,8 @@ namespace VeraCrypt if (enableKeyfiles) { SetDropTarget (new FileDropTarget (this)); -#ifdef TC_MACOSX foreach (wxWindow *c, GetChildren()) c->SetDropTarget (new FileDropTarget (this)); -#endif } Layout(); |