diff options
author | B. Stack <bgstack15@gmail.com> | 2024-02-16 21:06:07 -0500 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2024-02-16 21:06:07 -0500 |
commit | 0429cc7c5784925f198c7a96c5b847a01aa2d4e6 (patch) | |
tree | 9abc3add3a8fcf8cb79c83c4a7956133d06ae22b /wx+ | |
parent | add upstream 13.3 (diff) | |
download | FreeFileSync-0429cc7c5784925f198c7a96c5b847a01aa2d4e6.tar.gz FreeFileSync-0429cc7c5784925f198c7a96c5b847a01aa2d4e6.tar.bz2 FreeFileSync-0429cc7c5784925f198c7a96c5b847a01aa2d4e6.zip |
add upstream 13.413.4
Diffstat (limited to 'wx+')
-rw-r--r-- | wx+/popup_dlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/popup_dlg.cpp b/wx+/popup_dlg.cpp index c48bf592..5ab17564 100644 --- a/wx+/popup_dlg.cpp +++ b/wx+/popup_dlg.cpp @@ -289,7 +289,7 @@ public: GetSizer()->SetSizeHints(this); //~=Fit() + SetMinSize() #ifdef __WXGTK3__ Show(); //GTK3 size calculation requires visible window: https://github.com/wxWidgets/wxWidgets/issues/16088 - Hide(); //avoid old position flash when Center() moves window (asynchronously?) + //Hide(); -> avoids old position flash before Center() on GNOME but causes hang on KDE? https://freefilesync.org/forum/viewtopic.php?t=10103#p42404 #endif Center(); //needs to be re-applied after a dialog size change! |