parent
9190810c1f
commit
76abbe97f6
@ -76,7 +76,8 @@ PrintHostSendDialog::PrintHostSendDialog(const fs::path &path, PrintHostPostUplo
|
|||||||
txt_filename->SetValue(recent_path);
|
txt_filename->SetValue(recent_path);
|
||||||
txt_filename->SetFocus();
|
txt_filename->SetFocus();
|
||||||
|
|
||||||
m_valid_suffix = recent_path.substr(recent_path.find_last_of('.'));
|
if (size_t extension_start = recent_path.find_last_of('.'); extension_start != std::string::npos)
|
||||||
|
m_valid_suffix = recent_path.substr(extension_start);
|
||||||
// .gcode suffix control
|
// .gcode suffix control
|
||||||
auto validate_path = [this](const wxString &path) -> bool {
|
auto validate_path = [this](const wxString &path) -> bool {
|
||||||
if (! path.Lower().EndsWith(m_valid_suffix.Lower())) {
|
if (! path.Lower().EndsWith(m_valid_suffix.Lower())) {
|
||||||
|
Loading…
Reference in New Issue
Block a user