From a01dc595ec89a55ef91e6dbfcd8f702d8015e954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89meryc?= Date: Sun, 16 Jul 2023 17:29:46 -0400 Subject: [PATCH] Changed prompt text --- Editor/src/Windows/EditorSelectionPanel.cpp | 2 +- Editor/src/Windows/FileSystemUI.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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()); }