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.
This commit is contained in:
Daniele Forsi 2024-04-22 23:02:59 +02:00
parent f4b2dfc0a9
commit b4ec43e4aa
1 changed files with 3 additions and 0 deletions

View File

@ -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()