diff --git a/Unreal/Plugins/PS_Editor/Source/PS_Editor/UI/Widgets/PS_Editor_MainWidget.cpp b/Unreal/Plugins/PS_Editor/Source/PS_Editor/UI/Widgets/PS_Editor_MainWidget.cpp index e049d43..36659a3 100644 --- a/Unreal/Plugins/PS_Editor/Source/PS_Editor/UI/Widgets/PS_Editor_MainWidget.cpp +++ b/Unreal/Plugins/PS_Editor/Source/PS_Editor/UI/Widgets/PS_Editor_MainWidget.cpp @@ -56,7 +56,8 @@ TSharedRef UPS_Editor_MainWidget::RebuildWidget() .AutoHeight() [ SNew(SBorder) - .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) + .BorderImage(FCoreStyle::Get().GetBrush("WhiteBrush")) + .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) .Padding(FMargin(12.0f, 8.0f)) [ SNew(SHorizontalBox) @@ -130,7 +131,8 @@ TSharedRef UPS_Editor_MainWidget::RebuildWidget() .Padding(16.0f) [ SNew(SBorder) - .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) + .BorderImage(FCoreStyle::Get().GetBrush("WhiteBrush")) + .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) .Padding(FMargin(16.0f, 6.0f)) [ SNew(SHorizontalBox) @@ -239,7 +241,8 @@ TSharedRef UPS_Editor_MainWidget::BuildToolbar() }; return SNew(SBorder) - .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) + .BorderImage(FCoreStyle::Get().GetBrush("WhiteBrush")) + .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) .Padding(FMargin(8.0f, 4.0f)) [ SNew(SHorizontalBox) @@ -388,7 +391,8 @@ TSharedRef UPS_Editor_MainWidget::BuildPropertiesPanel() const FLinearColor BlueZ(0.1f, 0.3f, 0.8f); return SNew(SBorder) - .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) + .BorderImage(FCoreStyle::Get().GetBrush("WhiteBrush")) + .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) .Padding(FMargin(10.0f, 8.0f)) [ SNew(SVerticalBox) @@ -440,7 +444,8 @@ TSharedRef UPS_Editor_MainWidget::BuildPropertiesPanel() TSharedRef UPS_Editor_MainWidget::BuildSceneButtons() { return SNew(SBorder) - .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) + .BorderImage(FCoreStyle::Get().GetBrush("WhiteBrush")) + .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) .Padding(FMargin(8.0f, 4.0f)) [ SNew(SVerticalBox) @@ -801,7 +806,8 @@ TSharedRef UPS_Editor_MainWidget::BuildSpawnCatalog() ]; return SNew(SBorder) - .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) + .BorderImage(FCoreStyle::Get().GetBrush("WhiteBrush")) + .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) .Padding(FMargin(10.0f, 8.0f)) [ SNew(SBox) @@ -1349,7 +1355,8 @@ void UPS_Editor_MainWidget::ApplyTransformFromUI() TSharedRef UPS_Editor_MainWidget::BuildOutliner() { return SNew(SBorder) - .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) + .BorderImage(FCoreStyle::Get().GetBrush("WhiteBrush")) + .BorderBackgroundColor(FLinearColor(0.05f, 0.05f, 0.05f, 1.0f)) .Padding(FMargin(10.0f, 8.0f)) [ SNew(SVerticalBox)