From 70fb9d612b9bc61e89d1cdf09841ebf71082a8ec Mon Sep 17 00:00:00 2001 From: twanvl Date: Wed, 21 Jul 2010 17:12:49 +0000 Subject: [PATCH] Fix #19: Colon in Name Prevents Opening Save Dialog git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1446 0fc631ac-6414-0410-93d0-97cfa31319b6 --- src/gui/set/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/set/window.cpp b/src/gui/set/window.cpp index b4dc3065..50d63c48 100644 --- a/src/gui/set/window.cpp +++ b/src/gui/set/window.cpp @@ -548,7 +548,7 @@ void SetWindow::onFileExportMenu(wxCommandEvent& ev) { void SetWindow::onFileExportImage(wxCommandEvent&) { CardP card = current_panel->selectedCard(); if (!card) return; // no card selected - String name = wxFileSelector(_TITLE_("save image"), settings.default_export_dir, card->identification(), _(""), + String name = wxFileSelector(_TITLE_("save image"), settings.default_export_dir, clean_filename(card->identification()), _(""), _("JPEG images (*.jpg)|*.jpg|Windows bitmaps (*.bmp)|*.bmp|PNG images (*.png)|*.png|GIF images (*.gif)|*.gif|TIFF images (*.tif)|*.tif"), wxSAVE | wxOVERWRITE_PROMPT, this); if (!name.empty()) {