diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-12-15 17:59:38 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-12-16 00:46:34 +0100 |
commit | a81d45df820887cd9c66fb99d921f73632237bfc (patch) | |
tree | 08f072a9eb3244559a83358b7c9e42d17de9fe11 /src/Main/Forms/MainFrame.cpp | |
parent | a4ed6be38c58a009a480a81931676273a78e36fb (diff) | |
download | VeraCrypt-a81d45df820887cd9c66fb99d921f73632237bfc.tar.gz VeraCrypt-a81d45df820887cd9c66fb99d921f73632237bfc.zip |
MacOSX: Ensure that main window is visible on screen when About is display as a way to workaround for situations where UI is not visible or can't be move (for example, when changing display monitor with a different resolution).
Diffstat (limited to 'src/Main/Forms/MainFrame.cpp')
-rw-r--r-- | src/Main/Forms/MainFrame.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Main/Forms/MainFrame.cpp b/src/Main/Forms/MainFrame.cpp index 9abe2552..8e0c401b 100644 --- a/src/Main/Forms/MainFrame.cpp +++ b/src/Main/Forms/MainFrame.cpp @@ -725,6 +725,7 @@ namespace VeraCrypt #ifdef TC_MACOSX if (Gui->IsInBackgroundMode()) Gui->SetBackgroundMode (false); + EnsureVisible (); #endif AboutDialog dialog (this); dialog.ShowModal(); |