mirror of https://github.com/AxioDL/metaforce.git
Set initial window size for Layers
This commit is contained in:
parent
44ab54745f
commit
e400506017
|
@ -816,6 +816,10 @@ void ImGuiConsole::ShowItemsWindow() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void ImGuiConsole::ShowLayersWindow() {
|
void ImGuiConsole::ShowLayersWindow() {
|
||||||
|
// For some reason the window shows up tiny without this
|
||||||
|
float initialWindowSize = 300.f * ImGui::GetIO().DisplayFramebufferScale.x;
|
||||||
|
ImGui::SetNextWindowSize(ImVec2{initialWindowSize, initialWindowSize}, ImGuiCond_FirstUseEver);
|
||||||
|
|
||||||
if (ImGui::Begin("Layers", &m_showLayersWindow)) {
|
if (ImGui::Begin("Layers", &m_showLayersWindow)) {
|
||||||
for (const auto& world : ListWorlds()) {
|
for (const auto& world : ListWorlds()) {
|
||||||
const auto& layers = dummyWorlds[world.second]->GetWorldLayers();
|
const auto& layers = dummyWorlds[world.second]->GetWorldLayers();
|
||||||
|
|
Loading…
Reference in New Issue