diff --git a/Editor/src/Windows/EditorSelectionPanel.cpp b/Editor/src/Windows/EditorSelectionPanel.cpp index 3485a403..639a8948 100644 --- a/Editor/src/Windows/EditorSelectionPanel.cpp +++ b/Editor/src/Windows/EditorSelectionPanel.cpp @@ -429,7 +429,7 @@ void EditorSelectionPanel::DrawWrenScriptPanel(Ref wrenFile) ImGui::Text("Content"); ImGui::SameLine(ImGui::GetWindowWidth()-90); - if(ImGui::Button("Open In...")) + if(ImGui::Button("Open...")) { Nuake::OS::OpenIn(filePath); } diff --git a/Editor/src/Windows/FileSystemUI.cpp b/Editor/src/Windows/FileSystemUI.cpp index b3b3db26..1a07bf03 100644 --- a/Editor/src/Windows/FileSystemUI.cpp +++ b/Editor/src/Windows/FileSystemUI.cpp @@ -185,7 +185,7 @@ namespace Nuake { ImGui::Separator(); - if(ImGui::MenuItem("Open In...")) + if(ImGui::MenuItem("Open...")) { OS::OpenIn(file->GetAbsolutePath()); }