add #include format

This commit is contained in:
2026-04-08 20:00:13 -04:00
parent 0b91382f0f
commit 378a7692e2
16 changed files with 61 additions and 3 deletions
+2
View File
@@ -780,9 +780,11 @@ namespace anm2ed::imgui
for (auto& id : animation->layerOrder)
{
if (!animation->layerAnimations.contains(id)) continue;
auto& layerAnimation = animation->layerAnimations[id];
if (!layerAnimation.isVisible) continue;
if (!anm2.content.layers.contains(id)) continue;
auto& layer = anm2.content.layers.at(id);
auto spritesheet = anm2.spritesheet_get(layer.spritesheetID);
+1
View File
@@ -1,5 +1,6 @@
#include "events.hpp"
#include <format>
#include <ranges>
#include "log.hpp"
+1
View File
@@ -1,5 +1,6 @@
#include "layers.hpp"
#include <format>
#include <ranges>
#include "log.hpp"
+1
View File
@@ -1,5 +1,6 @@
#include "nulls.hpp"
#include <format>
#include <ranges>
#include "log.hpp"
+1
View File
@@ -1,6 +1,7 @@
#include "sounds.hpp"
#include <algorithm>
#include <format>
#include <ranges>
#include <vector>
+1 -1
View File
@@ -595,7 +595,7 @@ namespace anm2ed::imgui
mergePopup.close();
};
auto optionsSize = child_size_get(5);
auto optionsSize = child_size_get(6);
if (ImGui::BeginChild("##Merge Spritesheets Options", optionsSize, ImGuiChildFlags_Borders))
{
ImGui::SeparatorText(localize.get(LABEL_REGION_PROPERTIES_ORIGIN));
+1
View File
@@ -3,6 +3,7 @@
#include <algorithm>
#include <cmath>
#include <cstdint>
#include <format>
#include <imgui_internal.h>
+1
View File
@@ -1,5 +1,6 @@
#include "welcome.hpp"
#include <format>
#include <ranges>
#include "path_.hpp"