diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-06 21:04:14 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-06 21:04:14 +0000 |
| commit | d3aea06b37049ec0a10dbd926be4da731f9d59c9 (patch) | |
| tree | de6302830c499c9df6b2b696014ae7db42edb1a5 | |
| parent | a2811baa540d6c02f8b2ba50c61f040afc9f164d (diff) | |
Sort cinemas in screens panel (#726).
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | src/wx/screens_panel.cc | 2 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2015-11-06 Carl Hetherington <cth@carlh.net> + + * Sort cinemas in KDM dialog and standalone creator (#726). + 2015-11-06 c.hetherington <cth@carlh.net> * Updated ru_RU translation from Igor Voytovich. diff --git a/src/wx/screens_panel.cc b/src/wx/screens_panel.cc index 2130600e4..5bdfe6c6c 100644 --- a/src/wx/screens_panel.cc +++ b/src/wx/screens_panel.cc @@ -146,6 +146,8 @@ ScreensPanel::add_cinema (shared_ptr<Cinema> c) for (list<shared_ptr<Screen> >::iterator i = sc.begin(); i != sc.end(); ++i) { add_screen (c, *i); } + + _targets->SortChildren (_root); } void |
