diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-12-26 02:34:05 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-15 23:31:09 +0100 |
| commit | 3d2465bd17be110eabe2f7cd9a9ad8619cf3445b (patch) | |
| tree | 53f9c00938b6b4188ae8b3c1e53dd823718ecc39 | |
| parent | d0cd898b066b9eed3a90fbf1cdf6f600416500c1 (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 54306b1a9..5d208acc5 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...")); |
