@@ -435,7 +435,7 @@ export function addCommands(
435
435
}
436
436
}
437
437
} ,
438
- icon : openIcon
438
+ icon : openIcon . bindprops ( { stylesheet : 'menuItem' } )
439
439
} ) ;
440
440
441
441
commands . addCommand ( ContextCommandIDs . gitFileDiff , {
@@ -502,7 +502,7 @@ export function addCommands(
502
502
}
503
503
}
504
504
} ,
505
- icon : diffIcon
505
+ icon : diffIcon . bindprops ( { stylesheet : 'menuItem' } )
506
506
} ) ;
507
507
508
508
commands . addCommand ( ContextCommandIDs . gitFileAdd , {
@@ -517,7 +517,7 @@ export function addCommands(
517
517
await model . add ( file . to ) ;
518
518
}
519
519
} ,
520
- icon : addIcon
520
+ icon : addIcon . bindprops ( { stylesheet : 'menuItem' } )
521
521
} ) ;
522
522
523
523
commands . addCommand ( ContextCommandIDs . gitFileStage , {
@@ -532,7 +532,7 @@ export function addCommands(
532
532
await model . add ( file . to ) ;
533
533
}
534
534
} ,
535
- icon : addIcon
535
+ icon : addIcon . bindprops ( { stylesheet : 'menuItem' } )
536
536
} ) ;
537
537
538
538
commands . addCommand ( ContextCommandIDs . gitFileTrack , {
@@ -547,7 +547,7 @@ export function addCommands(
547
547
await model . add ( file . to ) ;
548
548
}
549
549
} ,
550
- icon : addIcon
550
+ icon : addIcon . bindprops ( { stylesheet : 'menuItem' } )
551
551
} ) ;
552
552
553
553
commands . addCommand ( ContextCommandIDs . gitFileUnstage , {
@@ -564,7 +564,7 @@ export function addCommands(
564
564
}
565
565
}
566
566
} ,
567
- icon : removeIcon
567
+ icon : removeIcon . bindprops ( { stylesheet : 'menuItem' } )
568
568
} ) ;
569
569
570
570
function representFiles ( files : Git . IStatusFile [ ] ) : JSX . Element {
@@ -611,7 +611,7 @@ export function addCommands(
611
611
}
612
612
}
613
613
} ,
614
- icon : closeIcon
614
+ icon : closeIcon . bindprops ( { stylesheet : 'menuItem' } )
615
615
} ) ;
616
616
617
617
commands . addCommand ( ContextCommandIDs . gitFileDiscard , {
@@ -661,7 +661,7 @@ export function addCommands(
661
661
}
662
662
}
663
663
} ,
664
- icon : discardIcon
664
+ icon : discardIcon . bindprops ( { stylesheet : 'menuItem' } )
665
665
} ) ;
666
666
667
667
commands . addCommand ( ContextCommandIDs . gitIgnore , {
0 commit comments