summaryrefslogtreecommitdiffstats
path: root/src/app/mainWindow.cpp
diff options
context:
space:
mode:
authormio <stigma@disroot.org>2025-02-02 13:59:13 +1000
committermio <stigma@disroot.org>2025-03-07 10:29:47 +1000
commit430d1bae9d27e4c3f9846fb999f4cbc8c29051dd (patch)
tree4c2c6b7d872add1a5c2a7a22bda5831ec8dc9db1 /src/app/mainWindow.cpp
parent5e57ab35afe0d5ddd960921a76ea11f22561f287 (diff)
downloadcodeine-430d1bae9d27e4c3f9846fb999f4cbc8c29051dd.tar.gz
codeine-430d1bae9d27e4c3f9846fb999f4cbc8c29051dd.zip
Add context menu to audioView
Allows people to toggle the analyzer visibility. Signed-off-by: mio <stigma@disroot.org>
Diffstat (limited to 'src/app/mainWindow.cpp')
-rw-r--r--src/app/mainWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/mainWindow.cpp b/src/app/mainWindow.cpp
index 54204e9..79cd025 100644
--- a/src/app/mainWindow.cpp
+++ b/src/app/mainWindow.cpp
@@ -329,7 +329,7 @@ MainWindow::contextMenuEvent(TQContextMenuEvent *ev)
TDEPopupMenu menu;
menu.setCheckable(true);
- int id = menu.insertItem(i18n("Toggle Analyzer"), this, TQ_SLOT(toggleAnalyzer()));
+ int id = menu.insertItem(i18n("Show Analyzer"), this, TQ_SLOT(toggleAnalyzer()));
menu.setItemChecked(id, m_analyzer->isVisible());
menu.exec(ev->globalPos());