-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also refresh the commit list when the refresh button is pressed
- Loading branch information
Showing
5 changed files
with
11 additions
and
9 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
src/GitS-Core.package/GSBrowser.class/instance/actionRefresh.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
actions-refs | ||
actionRefresh | ||
self | ||
updateRefTree; | ||
changed: #commitList. |
3 changes: 0 additions & 3 deletions
3
src/GitS-Core.package/GSBrowser.class/instance/actionRefreshRefTree.st
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...ss/instance/buildRefreshRefTreeButton..st → ...ser.class/instance/buildRefreshButton..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
toolbuilder | ||
buildRefreshRefTreeButton: builder | ||
buildRefreshButton: builder | ||
^ builder pluggableActionButtonSpec new | ||
model: self operationLifecycle; | ||
action: #actionRefreshRefTree; | ||
action: #actionRefresh; | ||
label: 'Refresh'; | ||
yourself |
2 changes: 1 addition & 1 deletion
2
src/GitS-Core.package/GSBrowser.class/instance/buildRefsButtons..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
toolbuilder | ||
buildRefsButtons: builder | ||
^ GSGUIUtilities buildButtons: { | ||
self buildRefreshRefTreeButton: builder. | ||
self buildRefreshButton: builder. | ||
self buildFetchAllButton: builder. | ||
} with: builder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters