diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-24 19:50:37 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-24 19:50:37 +0000 |
commit | 8010fdfda04b6f0dc61d8f19c2ddd95b18f37b88 (patch) | |
tree | 3a6756b7bfe519a8ca075c4a933d2c72ce4d94e7 /src/modules/plugins | |
parent | afb1914145f007e970787d9c37a9fb5f5aff2354 (diff) |
fix for 4-digit versions
git-svn-id: http://svn.miranda-ng.org/main/trunk@1172 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/plugins')
-rw-r--r-- | src/modules/plugins/pluginopts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/plugins/pluginopts.cpp b/src/modules/plugins/pluginopts.cpp index 020ef4b1f6..4b5de140dc 100644 --- a/src/modules/plugins/pluginopts.cpp +++ b/src/modules/plugins/pluginopts.cpp @@ -268,7 +268,7 @@ INT_PTR CALLBACK DlgPluginOpt(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar ListView_InsertColumn(hwndList, 3, &col);
col.pszText = TranslateT("Version");
- col.cx = 70;
+ col.cx = 75;
ListView_InsertColumn(hwndList, 4, &col);
// XXX: Won't work on windows 95 without IE3+ or 4.70
|