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