diff options
author | George Hazan <george.hazan@gmail.com> | 2013-01-23 17:24:37 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-01-23 17:24:37 +0000 |
commit | 6ae828fd5f3a53279911da31891f5ccc82a8b975 (patch) | |
tree | 0a94434b48611e10f55610fe00a430e62e5c9f6d /src | |
parent | 789add94358409d783b8258e44ad78ea0c7c1e90 (diff) |
no, it still doesn't work in some configurations
git-svn-id: http://svn.miranda-ng.org/main/trunk@3251 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/plugins/pluginopts.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/plugins/pluginopts.cpp b/src/modules/plugins/pluginopts.cpp index 5159bd5bc3..2d473a5cf8 100644 --- a/src/modules/plugins/pluginopts.cpp +++ b/src/modules/plugins/pluginopts.cpp @@ -265,11 +265,11 @@ INT_PTR CALLBACK DlgPluginOpt(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar LVCOLUMN col;
col.mask = LVCF_TEXT | LVCF_WIDTH;
col.pszText = _T("");
- col.cx = 34;
+ col.cx = 40;
ListView_InsertColumn(hwndList, 0, &col);
- col.pszText = TranslateT("On/Off");
- col.cx = 47;
+ col.pszText = _T("");
+ col.cx = 20;
ListView_InsertColumn(hwndList, 1, &col);
col.pszText = TranslateT("Plugin");
|