Fix casing on file extensions (#11265)

* Fix casing on file extensions
This commit is contained in:
Alexandre Folle de Menezes
2025-11-09 00:38:45 -03:00
committed by GitHub
parent a151ac931d
commit b1bb08b096
34 changed files with 2162 additions and 1998 deletions

View File

@@ -83,7 +83,7 @@ MediaFilePanel::MediaFilePanel(wxWindow * parent)
m_button_video = new ::Button(m_type_panel, _L("Video"), "", wxBORDER_NONE);
m_button_video->SetToolTip(_L("Switch to video files."));
m_button_model = new ::Button(m_type_panel, _L("Model"), "", wxBORDER_NONE);
m_button_video->SetToolTip(_L("Switch to 3mf model files."));
m_button_video->SetToolTip(_L("Switch to 3MF model files."));
for (auto b : {m_button_timelapse, m_button_video, m_button_model}) {
b->SetBackgroundColor(background);
b->SetCanFocus(false);