From 3271b043f89966a8c33bdd2de4e93a4428c0488d Mon Sep 17 00:00:00 2001 From: Jonas Kümmerlin Date: Fri, 4 Jan 2019 16:15:33 +0100 Subject: improve label display on Win32s/NT3.x and make it actually run on NT 3.1 NT 3.1 doesn't have GetSysColorBrush(), and the label display isn't broken enough for us to worry about it, since we're gonna replace it anyway at some point --- alf/alflabel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alf/alflabel.cpp') diff --git a/alf/alflabel.cpp b/alf/alflabel.cpp index a0dc138..108c8d5 100644 --- a/alf/alflabel.cpp +++ b/alf/alflabel.cpp @@ -9,7 +9,7 @@ int ALF__LabelTopPadding(HWND hwnd, ALFAPP app) // see also: alfedit.cpp return app->compatFn->GetSystemMetricsForDpi( SM_CYEDGE, ALF_CentipointsToPixels(GetParent(hwnd), 7200)) - + 1 /* internal padding in edit control */ + + ((LOBYTE(LOWORD(GetVersion())) < 4) ? 2 : 1) /* internal padding in edit control */ + 1 /* external padding around edit control */; } -- cgit v1.2.3