Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0859929

Browse files
authored
Merge branch 'master' into aw-double-toggle
2 parents fe64450 + ec704c5 commit 0859929

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

lib/worker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ ipc.on(channelName, (event, {type, data}) => {
8080
event.sender.sendTo(managerWebContentsId, channelName, {
8181
sourceWebContentsId,
8282
type: 'git-spawn-error',
83-
id, err,
83+
data: {id, err},
8484
});
8585
});
8686

8787
child.stdin.on('error', err => {
8888
event.sender.sendTo(managerWebContentsId, channelName, {
8989
sourceWebContentsId,
9090
type: 'git-stdin-error',
91-
id, stdin: options.stdin, err,
91+
data: {id, stdin: options.stdin, err},
9292
});
9393
});
9494
};

styles/status-bar-tile-controller.less

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@
4141
animation: github-StatusBarSync-animation 2s linear 30; // limit to 1min in case something gets stuck
4242
}
4343

44+
// Merge conflict icon
45+
.github-ChangedFilesCount .icon-alert {
46+
margin-left: @component-padding / 2;
47+
}
48+
4449
.github-branch-detached {
4550
color: @text-color-subtle;
4651
font-style: italic;

0 commit comments

Comments
 (0)