Fixed few more encoding issues

All uncovered after disabling unsafe wxString conversions
This commit is contained in:
Lukas Matena 2020-02-21 11:58:18 +01:00
parent a877147afd
commit 91cabe5832
4 changed files with 9 additions and 9 deletions

View file

@ -162,7 +162,7 @@ void ConfigSnapshotDialog::on_dpi_changed(const wxRect &suggested_rect)
void ConfigSnapshotDialog::onLinkClicked(wxHtmlLinkEvent &event)
{
m_snapshot_to_activate = event.GetLinkInfo().GetHref();
m_snapshot_to_activate = event.GetLinkInfo().GetHref().ToUTF8();
this->EndModal(wxID_CLOSE);
}