You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
UE-8509 Android SDK Paths being saved even if the user doesn't set them - removed initial pull of data on start up [CL 2425929 by Ben Marsh in Main branch]
32 lines
894 B
C++
32 lines
894 B
C++
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "EditorStyle.h"
|
|
#include "PropertyEditorModule.h"
|
|
#include "AndroidSDKSettings.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// FAndroidSDKSettingsCustomization
|
|
|
|
class FAndroidSDKSettingsCustomization : public IDetailCustomization
|
|
{
|
|
public:
|
|
// Makes a new instance of this detail layout class for a specific detail view requesting it
|
|
static TSharedRef<IDetailCustomization> MakeInstance();
|
|
|
|
// IDetailCustomization interface
|
|
virtual void CustomizeDetails(IDetailLayoutBuilder& DetailLayout) override;
|
|
// End of IDetailCustomization interface
|
|
|
|
private:
|
|
FAndroidSDKSettingsCustomization();
|
|
|
|
void BuildSDKPathSection(IDetailLayoutBuilder& DetailLayout);
|
|
|
|
private:
|
|
IDetailLayoutBuilder* SavedLayoutBuilder;
|
|
ITargetPlatformManagerModule * TargetPlatformManagerModule;
|
|
|
|
};
|