Skip to content

Commit

Permalink
Add 'Refresh refs' menu item
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusDoe committed Oct 24, 2023
1 parent f7b16f9 commit a1bdaf2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
actions
actionRefreshRefList
self changed: #refList.
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,9 @@ refListMenu: aMenu
self commitMenu: aMenu].
aMenu target: self.
aMenu hasItems ifTrue: [aMenu addLine].
aMenu add: (self showGitRefs ifTrue: ['<yes>'] ifFalse: ['<no>']), 'Show git refs' action: #toggleShowGitRefs.
aMenu
add: 'Refresh refs'
action: #actionRefreshRefList;
add: (self showGitRefs ifTrue: ['<yes>'] ifFalse: ['<no>']), 'Show git refs'
action: #toggleShowGitRefs.
^ aMenu
3 changes: 2 additions & 1 deletion src/Squot.package/SquotBrowser.class/methodProperties.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"actionPull" : "mad 9/26/2023 16:54",
"actionPush" : "mad 9/26/2023 16:58",
"actionPush:" : "mad 9/26/2023 16:57",
"actionRefreshRefList" : "mad 10/24/2023 19:54",
"actionRemoveActiveProject" : "mad 9/21/2023 11:55",
"actionResetToActiveCommit" : "mad 9/21/2023 15:40",
"actionSelfUpdate" : "mad 10/16/2023 23:03",
Expand Down Expand Up @@ -83,7 +84,7 @@
"projectListMenu:" : "mad 10/24/2023 17:05",
"refChanged:" : "mad 9/15/2023 11:04",
"refList" : "mad 10/18/2023 14:42",
"refListMenu:" : "mad 10/24/2023 16:52",
"refListMenu:" : "mad 10/24/2023 20:09",
"showGitRefs" : "mad 10/16/2023 21:39",
"showGitRefs:" : "mad 10/16/2023 21:50",
"toggleShowGitRefs" : "mad 10/16/2023 21:50",
Expand Down

0 comments on commit a1bdaf2

Please sign in to comment.