mirror of
https://gitlab.gnome.org/GNOME/gitg
synced 2024-11-05 16:43:26 +00:00
Implement copy name ref action
This commit is contained in:
parent
ca247ffcbb
commit
46d3d3f373
2 changed files with 2 additions and 0 deletions
|
@ -62,6 +62,7 @@ gitg_gitg_VALASOURCES = \
|
|||
gitg/gitg-ui-elements.vala \
|
||||
gitg/gitg-ref-action-rename.vala \
|
||||
gitg/gitg-ref-action-delete.vala \
|
||||
gitg/gitg-ref-action-copy-name.vala \
|
||||
gitg/gitg-commit-action-create-branch.vala \
|
||||
gitg/gitg-create-branch-dialog.vala \
|
||||
gitg/gitg-commit-action-create-tag.vala \
|
||||
|
|
|
@ -409,6 +409,7 @@ namespace GitgHistory
|
|||
|
||||
add_ref_action(actions, new Gitg.RefActionRename(application, af, reference));
|
||||
add_ref_action(actions, new Gitg.RefActionDelete(application, af, reference));
|
||||
add_ref_action(actions, new Gitg.RefActionCopyName(application, af, reference));
|
||||
|
||||
var exts = new Peas.ExtensionSet(Gitg.PluginsEngine.get_default(),
|
||||
typeof(GitgExt.RefAction),
|
||||
|
|
Loading…
Reference in a new issue