From 7f09e22242eeae79df6f3bd6dfa85da1cb957ab8 Mon Sep 17 00:00:00 2001 From: George King <98261225+GeorgeK1ng@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:23:59 +0100 Subject: [PATCH] Improved Ground / Undergound menu text --- mapeditor/mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mapeditor/mainwindow.cpp b/mapeditor/mainwindow.cpp index 8210b77ca..b4daf03a8 100644 --- a/mapeditor/mainwindow.cpp +++ b/mapeditor/mainwindow.cpp @@ -979,10 +979,12 @@ void MainWindow::on_actionLevel_triggered() ui->minimapView->setScene(controller.miniScene(mapLevel)); if (mapLevel == 0) { + ui->actionLevel->setText(tr("View underground")); ui->actionLevel->setToolTip(tr("View underground")); } else { + ui->actionLevel->setText(tr("View surface")); ui->actionLevel->setToolTip(tr("View surface")); } }