fix(Windows): Handling and main will have a propper default size
This commit is contained in:
parent
cfed7b703f
commit
8fb8c1e505
@ -6,6 +6,7 @@ namespace big
|
||||
{
|
||||
void window::render_handling_window()
|
||||
{
|
||||
ImGui::SetNextWindowSize({ 500, 780 }, ImGuiCond_FirstUseEver);
|
||||
if (g_handling_window && ImGui::Begin("Handling", &g_handling_window))
|
||||
{
|
||||
if (g_in_vehicle && g_vehicle != nullptr)
|
||||
|
@ -5,6 +5,7 @@ namespace big
|
||||
{
|
||||
void window::render_main_window()
|
||||
{
|
||||
ImGui::SetNextWindowSize({ 800, 840 }, ImGuiCond_FirstUseEver);
|
||||
if (ImGui::Begin("Yimura's Mod Menu"))
|
||||
{
|
||||
ImGui::BeginTabBar("tabbar");
|
||||
|
Reference in New Issue
Block a user