mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
Fixed windows being zero sized initially
This commit is contained in:
@@ -28,8 +28,10 @@ namespace hex {
|
||||
while (!glfwWindowShouldClose(this->m_window)) {
|
||||
this->frameBegin();
|
||||
|
||||
for (auto &view : this->m_views)
|
||||
for (auto &view : this->m_views) {
|
||||
ImGui::SetNextWindowSize(ImVec2(250, 250));
|
||||
view->createView();
|
||||
}
|
||||
|
||||
this->frameEnd();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user