From da9221e20e3d9cf3e71af2bd648a95f0ee382770 Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Mon, 29 Jan 2018 18:49:30 +0100 Subject: [PATCH] + fix: Char2Hex: remove limit single byte selection --- src/Edit.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Edit.c b/src/Edit.c index adaf93b42..c9565afc3 100644 --- a/src/Edit.c +++ b/src/Edit.c @@ -1632,8 +1632,6 @@ void EditChar2Hex(HWND hwnd) { } //TODO: iterate over complete selection? - if ((iSelEnd - iSelStart) != 1) { return; } - char ch[32] = { '\0' }; WCHAR wch[32] = { L'\0' };