You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Content browser drawer now working well with ctrl+space as the default keybinding. Summoning the drawer will immediately focus the search bar. Had to add some new hooks into the content browser api for that - Moved status bar to a proper module [CL 13470560 by Matt Kuhlenschmidt in ue5-main branch]
30 lines
404 B
C++
30 lines
404 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "StatusBarModule.h"
|
|
|
|
|
|
class FStatusBarModule : public IStatusBarModule
|
|
{
|
|
/** IModuleInterface implementation */
|
|
virtual void StartupModule() override;
|
|
virtual void ShutdownModule() override;
|
|
};
|
|
|
|
IMPLEMENT_MODULE( FStatusBarModule, StatusBar )
|
|
|
|
|
|
|
|
void FStatusBarModule::StartupModule()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void FStatusBarModule::ShutdownModule()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|