@@ -294,11 +294,11 @@ public void DrawGitDiff(Vector2 size, HunkAction stageHunk, HunkAction unstageHu
294
294
var fileStatus = status . Files . FirstOrDefault ( x => x . FullProjectPath . Contains ( currentFile ) ) ;
295
295
if ( fileStatus != null && ! fileStatus . IsUnresolved )
296
296
{
297
- if ( ! staged && GUI . Button ( new Rect ( verticalOffsest -= buttonWidth , currentOffset , 70 , headerHeight ) , $ "Stage", EditorStyles . miniButton ) )
297
+ if ( ! staged && GUI . Button ( new Rect ( verticalOffsest -= buttonWidth , currentOffset , 70 , headerHeight ) , "Stage" , EditorStyles . miniButton ) )
298
298
stageHunk . Invoke ( fileStatus , hunkIndex + 1 ) ;
299
- if ( staged && GUI . Button ( new Rect ( verticalOffsest -= buttonWidth , currentOffset , 70 , headerHeight ) , $ "Unstage", EditorStyles . miniButton ) )
299
+ if ( staged && GUI . Button ( new Rect ( verticalOffsest -= buttonWidth , currentOffset , 70 , headerHeight ) , "Unstage" , EditorStyles . miniButton ) )
300
300
unstageHunk . Invoke ( fileStatus , hunkIndex + 1 ) ;
301
- if ( ! staged && GUI . Button ( new Rect ( verticalOffsest -= buttonWidth , currentOffset , 70 , headerHeight ) , $ "Discard", EditorStyles . miniButton ) )
301
+ if ( ! staged && GUI . Button ( new Rect ( verticalOffsest -= buttonWidth , currentOffset , 70 , headerHeight ) , "Discard" , EditorStyles . miniButton ) )
302
302
discardHunk . Invoke ( fileStatus , hunkIndex + 1 ) ;
303
303
}
304
304
}
0 commit comments