Loading popup is not resizable.

This commit is contained in:
Bartosz Taudul 2018-07-28 18:48:45 +02:00
parent 6a3a9c0bc5
commit a7e48bd2a9

View File

@ -181,7 +181,7 @@ int main( int argc, char** argv )
{
ImGui::OpenPopup( "Loading trace..." );
}
if( ImGui::BeginPopupModal( "Loading trace..." ) )
if( ImGui::BeginPopupModal( "Loading trace...", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) )
{
auto currProgress = progress.progress.load( std::memory_order_relaxed );
if( totalProgress == 0 )