mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-10 13:13:34 +01:00
Merge pull request #267 from gv5470/patch-100
Fix wxWidgets assertion failed when backing up/restoring volume heade…
This commit is contained in:
commit
b076fb09d7
@ -219,7 +219,7 @@ namespace VeraCrypt
|
||||
|
||||
wxSingleChoiceDialog choiceDialog (parent, LangString["DOES_VOLUME_CONTAIN_HIDDEN"], Application::GetName(), choices);
|
||||
choiceDialog.SetSize (wxSize (Gui->GetCharWidth (&choiceDialog) * 60, -1));
|
||||
choiceDialog.SetSelection (-1);
|
||||
choiceDialog.SetSelection (0);
|
||||
|
||||
if (choiceDialog.ShowModal() != wxID_OK)
|
||||
return;
|
||||
@ -1324,7 +1324,7 @@ namespace VeraCrypt
|
||||
|
||||
wxSingleChoiceDialog choiceDialog (parent, LangString["HEADER_RESTORE_EXTERNAL_INTERNAL"], Application::GetName(), choices);
|
||||
choiceDialog.SetSize (wxSize (Gui->GetCharWidth (&choiceDialog) * 80, -1));
|
||||
choiceDialog.SetSelection (-1);
|
||||
choiceDialog.SetSelection (0);
|
||||
|
||||
if (choiceDialog.ShowModal() != wxID_OK)
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user