diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-01-02 17:28:27 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-01-02 17:28:30 +0100 |
| commit | 85b2143644d8faf16252666f738d5fda01fc1869 (patch) | |
| tree | 1545de00b0930e9f87c0a93b4d527cdac6c413bd /src | |
| parent | 45bad7eafc04937deff27152732ffd848a4fbdd2 (diff) | |
Remove tick/no_tick icons which I believe are no longer used.
They were added to the list in the playlist editor but seemingly
not used.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/dcpomatic_playlist.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/tools/dcpomatic_playlist.cc b/src/tools/dcpomatic_playlist.cc index 8c7c38038..e2f2536db 100644 --- a/src/tools/dcpomatic_playlist.cc +++ b/src/tools/dcpomatic_playlist.cc @@ -331,16 +331,6 @@ public: _list->AppendColumn (_("Type"), wxLIST_FORMAT_LEFT, 100); _list->AppendColumn (_("Encrypted"), wxLIST_FORMAT_CENTRE, 90); - auto images = new wxImageList (16, 16); - wxIcon tick_icon; - wxIcon no_tick_icon; - tick_icon.LoadFile (bitmap_path("tick.png"), wxBITMAP_TYPE_PNG); - no_tick_icon.LoadFile (bitmap_path("no_tick.png"), wxBITMAP_TYPE_PNG); - images->Add (tick_icon); - images->Add (no_tick_icon); - - _list->SetImageList (images, wxIMAGE_LIST_SMALL); - list->Add (_list, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP); auto button_sizer = new wxBoxSizer (wxVERTICAL); |
