Merge pull request #17 from Mantisis/master

Fix Name initialized after DrawEven in ImGuiContextProxy
This commit is contained in:
segross 2019-05-05 20:01:40 +01:00 committed by GitHub
commit 15658fa917
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,17 +117,17 @@ private:
bool bIsDrawEarlyDebugCalled = false; bool bIsDrawEarlyDebugCalled = false;
bool bIsDrawDebugCalled = false; bool bIsDrawDebugCalled = false;
const FImGuiInputState* InputState = nullptr;
TArray<FImGuiDrawList> DrawLists;
FString Name;
int32 ContextIndex = Utilities::INVALID_CONTEXT_INDEX;
uint32 LastFrameNumber = 0; uint32 LastFrameNumber = 0;
FSimpleMulticastDelegate DrawEvent; FSimpleMulticastDelegate DrawEvent;
FSimpleMulticastDelegate* SharedDrawEvent = nullptr; FSimpleMulticastDelegate* SharedDrawEvent = nullptr;
const FImGuiInputState* InputState = nullptr;
TArray<FImGuiDrawList> DrawLists;
int32 ContextIndex = Utilities::INVALID_CONTEXT_INDEX;
FString Name;
std::string IniFilename; std::string IniFilename;
}; };