changeset 131:e511c21942e5

Win: Remove a workaround I made for the issues on Windows 8 and 10. Due to the Dynamic Windows changes to disable DW_FCF_COMPOSITED flag on Windows 8 and 10 this is no longer necessary. A glass background to the MLE might make it hard to read on some backgrounds, so might add something back in the future, but it doesn't have the other issues.
author Brian Smith <brian@dbsoft.org>
date Mon, 14 Dec 2020 21:10:15 -0600
parents eab2a1950daf
children c28ea3a27d09
files src/handyftp.c
diffstat 1 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/handyftp.c	Mon Dec 14 19:36:50 2020 -0600
+++ b/src/handyftp.c	Mon Dec 14 21:10:15 2020 -0600
@@ -2982,13 +2982,6 @@
 
 	dw_mle_set_editable(mle, FALSE);
 
-#ifdef __WIN32__
-	if(dw_feature_get(DW_FEATURE_DARK_MODE) >= DW_DARK_MODE_FULL)
-		dw_window_set_color(mle, DW_CLR_WHITE, DW_CLR_DARKGRAY);
-	else
-		dw_window_set_color(mle, DW_CLR_BLACK, DW_CLR_PALEGRAY);
-#endif
-
 	/* Buttons */
 	buttonbox = dw_box_new(BOXHORZ, 0);