From e278d165bb30b15b25e5fd8ff96a7985ad660826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Tue, 18 Jun 2013 14:44:43 +0000 Subject: Fixed max width of plugins list. git-svn-id: http://svn.miranda-ng.org/main/trunk@5015 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/plugins/pluginopts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules') diff --git a/src/modules/plugins/pluginopts.cpp b/src/modules/plugins/pluginopts.cpp index c985d44a6e..ab884410d6 100644 --- a/src/modules/plugins/pluginopts.cpp +++ b/src/modules/plugins/pluginopts.cpp @@ -296,7 +296,7 @@ INT_PTR CALLBACK DlgPluginOpt(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar ListView_SetColumnWidth(hwndList, 2, 110); w = 110; } - int max = w < 110 ? 199+110-w:199; + int max = w < 110 ? 189+110-w:189; ListView_SetColumnWidth(hwndList, 3, LVSCW_AUTOSIZE); // short name w = ListView_GetColumnWidth(hwndList, 3); if (w > max) -- cgit v1.2.3