diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-08 21:37:32 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-08 21:37:32 +0200 |
| commit | 02cd4a50fd66057155352bc5a7fe9597be0e279d (patch) | |
| tree | f33c0c9555852f4de13e2ea74bdd1211e269c85d | |
| parent | 5d9de49a60c70dac3213ef8de040fcfe8bfc58aa (diff) | |
Fix incorrect sense of title parameter.
| -rw-r--r-- | src/wx/editable_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
