diff options
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); - -__________________________________________________________________________________________________________ |