summaryrefslogtreecommitdiff
path: root/src/modules/plugins
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-06-18 14:44:43 +0000
committerRobert Pösel <robyer@seznam.cz>2013-06-18 14:44:43 +0000
commite278d165bb30b15b25e5fd8ff96a7985ad660826 (patch)
tree6756b2a91ed182a0bcb100e12db26fa096942a64 /src/modules/plugins
parent6aa397a3e4d04de64c77aa81ddf7f6e584c4b450 (diff)
Fixed max width of plugins list.
git-svn-id: http://svn.miranda-ng.org/main/trunk@5015 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/plugins')
-rw-r--r--src/modules/plugins/pluginopts.cpp2
1 files changed, 1 insertions, 1 deletions
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)