1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-29 14:52:12 +01:00

OP-1245 Made the dialog raise to front if hidden by main window.

This commit is contained in:
m_thread 2014-03-28 14:34:33 +01:00
parent 7affc034c4
commit 6cb2797c4f

View File

@ -75,6 +75,8 @@ void FlightLogPlugin::ShowLogManagementDialog()
m_logDialog = new FlightLogDialog(0, new FlightLogManager());
connect(m_logDialog, SIGNAL(finished(int)), this, SLOT(LogManagementDialogClosed()));
m_logDialog->show();
} else {
m_logDialog->raise();
}
}