From b4ec43e4aae7471c5762bdc927a9f4a8143e1ce5 Mon Sep 17 00:00:00 2001 From: Daniele Forsi Date: Mon, 22 Apr 2024 23:02:59 +0200 Subject: [PATCH] Raise the Beacon, IBP Beacons an Radio Time dialogs Make the dialogs visible again if they are open but are hidden behind the main window or another application's window. --- plugins/feature/map/mapgui.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/feature/map/mapgui.cpp b/plugins/feature/map/mapgui.cpp index 8bd3d6a0b..8714b4884 100644 --- a/plugins/feature/map/mapgui.cpp +++ b/plugins/feature/map/mapgui.cpp @@ -2507,17 +2507,20 @@ void MapGUI::on_displaySettings_clicked() void MapGUI::on_beacons_clicked() { m_beaconDialog.show(); + m_beaconDialog.raise(); } void MapGUI::on_ibpBeacons_clicked() { m_ibpBeaconDialog.show(); + m_ibpBeaconDialog.raise(); } void MapGUI::on_radiotime_clicked() { m_radioTimeDialog.updateTable(); m_radioTimeDialog.show(); + m_radioTimeDialog.raise(); } QString MapGUI::getDataDir()