From c67b4cf5366de3fc94bf8fd61d6da728558e1022 Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Mon, 1 Jan 2024 23:06:33 -0600 Subject: [PATCH] Removing "L" key debug from map widget, handled by debug menu --- scwx-qt/source/scwx/qt/map/map_widget.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/scwx-qt/source/scwx/qt/map/map_widget.cpp b/scwx-qt/source/scwx/qt/map/map_widget.cpp index ebef32e7..ebadf50b 100644 --- a/scwx-qt/source/scwx/qt/map/map_widget.cpp +++ b/scwx-qt/source/scwx/qt/map/map_widget.cpp @@ -998,14 +998,6 @@ void MapWidget::keyPressEvent(QKeyEvent* ev) case Qt::Key_S: changeStyle(); break; - case Qt::Key_L: - { - for (const QString& layer : p->map_->layerIds()) - { - qDebug() << "Layer: " << layer; - } - } - break; default: break; }