diff options
author | B. Stack <bgstack15@gmail.com> | 2022-04-18 13:48:31 +0000 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-04-18 13:48:31 +0000 |
commit | 8a551d2eff24bdd23bc25caeb8d17207409aae38 (patch) | |
tree | 84e67ca0a1fb045a12d015fcffca9cd8087c9332 /Bugs.txt | |
parent | Merge branch 'b11.18' into 'master' (diff) | |
parent | add upstream 11.20 (diff) | |
download | FreeFileSync-8a551d2eff24bdd23bc25caeb8d17207409aae38.tar.gz FreeFileSync-8a551d2eff24bdd23bc25caeb8d17207409aae38.tar.bz2 FreeFileSync-8a551d2eff24bdd23bc25caeb8d17207409aae38.zip |
Merge branch 'b11.20' into 'master'11.20
add upstream 11.20
See merge request opensource-tracking/FreeFileSync!43
Diffstat (limited to 'Bugs.txt')
-rw-r--r-- | Bugs.txt | 20 |
1 files changed, 8 insertions, 12 deletions
@@ -64,20 +64,18 @@ move the following constants from src/sftp.h to include/libssh2_sftp.h: __________________________________________________________________________________________________________ ------------------------------- -| wxWidgets 3.1.5-2020-12-26 | ------------------------------- +------------------- +| wxWidgets 3.1.6 | +------------------- __________________________________________________________________________________________________________ -/include/wx/window.h +/include/wx/features.h wxWidgets/GTK2 on some Linux systems incorrectly detects high DPI: https://freefilesync.org/forum/viewtopic.php?t=6114 => hack away high-DPI support for GTK2 (= pretend GTK2 has device independent pixels, which it clearly has not!) - #include "wx/gtk/window.h" -- #ifdef __WXGTK3__ -+ //#ifdef __WXGTK3__ - #define wxHAVE_DPI_INDEPENDENT_PIXELS -- #endif -+ //#endif ++ #if defined(__WXGTK20__) ++ #define wxHAS_DPI_INDEPENDENT_PIXELS ++ #endif + __________________________________________________________________________________________________________ /src/aui/framemanager.cpp: Fix incorrect pane height calculations: @@ -166,5 +164,3 @@ Backspace not working in filter dialog: http://www.freefilesync.org/forum/viewto g_signal_connect (widget, "key_press_event", G_CALLBACK (gtk_window_key_press_callback), this); - -__________________________________________________________________________________________________________ |