From f82220ff3d31f90f3ba6f4cda203f8dff7aeb715 Mon Sep 17 00:00:00 2001 From: Michael Delva Date: Mon, 30 Jan 2023 14:42:36 +0100 Subject: [PATCH] Fixed warning --- Source/GitSourceControl/Private/GitSourceControlModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/GitSourceControl/Private/GitSourceControlModule.cpp b/Source/GitSourceControl/Private/GitSourceControlModule.cpp index 81ef799..d63da59 100644 --- a/Source/GitSourceControl/Private/GitSourceControlModule.cpp +++ b/Source/GitSourceControl/Private/GitSourceControlModule.cpp @@ -135,7 +135,7 @@ void FGitSourceControlModule::CreateGitContentBrowserAssetMenu( FMenuBuilder & m menu_builder.AddMenuEntry( LOCTEXT( "GitPlugin", "Diff against origin/develop" ), LOCTEXT( "GitPlugin", "Diff that asset against the version on origin/develop." ), - FSlateIcon( FEditorStyle::GetStyleSetName(), "SourceControl.Actions.Diff" ), + FSlateIcon( FAppStyle::GetAppStyleSetName(), "SourceControl.Actions.Diff" ), FUIAction( FExecuteAction::CreateRaw( this, &FGitSourceControlModule::DiffAssetAgainstGitOriginDevelop, selected_assets ) ) ); }