From 98518865f72ccb25e3f5a061508aff98ffb59493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Sun, 5 Feb 2017 23:40:55 +0100 Subject: Msg_Export: Allow entering "0" for no limit of line width --- plugins/Msg_Export/src/options.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Msg_Export/src/options.cpp') diff --git a/plugins/Msg_Export/src/options.cpp b/plugins/Msg_Export/src/options.cpp index d2a027545e..7ae57f3afe 100755 --- a/plugins/Msg_Export/src/options.cpp +++ b/plugins/Msg_Export/src/options.cpp @@ -339,8 +339,8 @@ BOOL bApplyChanges(HWND hwndDlg) wchar_t szTemp[500]; int nTmp = GetDlgItemInt(hwndDlg, IDC_MAX_CLOUMN_WIDTH, &bTrans, TRUE); - if (!bTrans || nTmp < 5) { - mir_snwprintf(szTemp, TranslateT("Max line width must be at least %d"), 5); + if (!bTrans || (nTmp > 0 && nTmp < 5)) { + mir_snwprintf(szTemp, TranslateT("Max line width must be at least %d. Or use 0 for no limit."), 5); MessageBox(hwndDlg, szTemp, MSG_BOX_TITEL, MB_OK); bRet = false; } -- cgit v1.2.3