fix unnatural English

This commit is contained in:
2022-08-31 13:10:28 +09:00
parent f76960da1b
commit 5505488661
2 changed files with 2 additions and 2 deletions

View File

@@ -1029,7 +1029,7 @@ void Network::Update() noexcept {
nf7::gui::GetContextDisplayName(*lambda_);
if (ImGui::BeginCombo("##lambda", current_lambda.c_str())) {
if (lambda_) {
if (ImGui::Selectable("detach from current lambda")) {
if (ImGui::Selectable("detach current lambda")) {
AttachLambda(nullptr);
}
ImGui::Separator();

View File

@@ -1405,7 +1405,7 @@ void TL::UpdateLambdaSelector() noexcept {
lambda_? nf7::gui::GetParentContextDisplayName(*lambda_): "(unselected)";
if (ImGui::BeginCombo("##lambda", current_lambda.c_str())) {
if (lambda_) {
if (ImGui::Selectable("detach from current lambda")) {
if (ImGui::Selectable("detach current lambda")) {
AttachLambda(nullptr);
}
ImGui::Separator();