|
From: David H. <no...@so...> - 2013-12-21 20:13:08
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "codelite".
The branch, master has been updated
via 8904be4831cd725384283616f425f1f0f2f6a43f (commit)
from 779a17faba844e3bcc6928818a1ba9624714b93d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://sourceforge.net/p/codelite/codelitegit/ci/8904be4831cd725384283616f425f1f0f2f6a43f
commit 8904be4831cd725384283616f425f1f0f2f6a43f
Author: dghart <da...@4P...>
Date: Sat Dec 21 20:12:36 2013 +0000
Move the 'Remove All Bookmarks' menuitem from the margin-contextmenu's submenu to the parent menu
diff --git a/LiteEditor/cl_editor.cpp b/LiteEditor/cl_editor.cpp
index 1c530bc..b5be976 100644
--- a/LiteEditor/cl_editor.cpp
+++ b/LiteEditor/cl_editor.cpp
@@ -2597,7 +2597,6 @@ void LEditor::AddBookmarksSubmenu(wxMenu* parentMenu)
menu->AppendSeparator();
menu->Append(XRCID("removeall_current_bookmarks"), _("Remove All Currently-Active Bookmarks"));
- menu->Append(XRCID("removeall_bookmarks"), _("Remove All Bookmarks"));
item = new wxMenuItem(parentMenu, XRCID("more_bookmark_options"), _("More..."), "", wxITEM_NORMAL, menu);
parentMenu->Append(item);
@@ -3075,6 +3074,8 @@ void LEditor::DoBreakptContextMenu(wxPoint pt)
// First, add/del bookmark
menu.Append(XRCID("toggle_bookmark"), LineIsMarked(GetActiveBookmarkMask()) ? wxString(_("Remove Bookmark")) : wxString(_("Add Bookmark")) );
+ menu.Append(XRCID("removeall_bookmarks"), _("Remove All Bookmarks"));
+
AddBookmarksSubmenu(&menu);
menu.AppendSeparator();
-----------------------------------------------------------------------
Summary of changes:
LiteEditor/cl_editor.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive
--
codelite
|