diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-12-26 02:34:05 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-29 01:10:50 +0200 |
| commit | 6200c0491e5e9f3cb5fde3a302845d8af9244478 (patch) | |
| tree | d5945a878edaadd6a958323fe9bb1876f93a63ba | |
| parent | af85c3bb844599895eda780083fb9466cdfc8e76 (diff) | |
Tweak content menu ordering.
| -rw-r--r-- | src/wx/content_menu.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/content_menu.cc b/src/wx/content_menu.cc index 3b49a85cc..ea455df95 100644 --- a/src/wx/content_menu.cc +++ b/src/wx/content_menu.cc @@ -87,9 +87,9 @@ ContentMenu::ContentMenu (wxWindow* p) _repeat = _menu->Append (ID_repeat, _("Repeat...")); _join = _menu->Append (ID_join, _("Join")); _find_missing = _menu->Append (ID_find_missing, _("Find missing...")); + _re_examine = _menu->Append (ID_re_examine, _("Re-examine...")); _properties = _menu->Append (ID_properties, _("Properties...")); _advanced = _menu->Append (ID_advanced, _("Advanced settings...")); - _re_examine = _menu->Append (ID_re_examine, _("Re-examine...")); _menu->AppendSeparator (); _kdm = _menu->Append (ID_kdm, _("Add KDM...")); _ov = _menu->Append (ID_ov, _("Add OV...")); |
