From: Carl Hetherington Date: Tue, 8 Sep 2020 19:37:32 +0000 (+0200) Subject: Fix incorrect sense of title parameter. X-Git-Tag: v2.15.102~15 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=02cd4a50fd66057155352bc5a7fe9597be0e279d Fix incorrect sense of title parameter. --- 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; }