From 02cd4a50fd66057155352bc5a7fe9597be0e279d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 8 Sep 2020 21:37:32 +0200 Subject: [PATCH] Fix incorrect sense of title parameter. --- src/wx/editable_list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/editable_list.h b/src/wx/editable_list.h index d53da6cbe..c64c09481 100644 --- a/src/wx/editable_list.h +++ b/src/wx/editable_list.h @@ -78,7 +78,7 @@ public: SetSizer (_sizer); long style = wxLC_REPORT | wxLC_SINGLE_SEL; - if (title) { + if (!title) { style |= wxLC_NO_HEADER; } -- 2.30.2