Fix issue with frame deselection on spritesheet editor (???) + work on themes

This commit is contained in:
2025-11-15 11:01:27 -05:00
parent cbbf81b739
commit b9f195ab89
13 changed files with 81 additions and 22 deletions

View File

@@ -13,6 +13,30 @@ namespace anm2ed::types::draw_order
};
}
namespace anm2ed::types::theme
{
#define THEMES \
X(LIGHT, "Light") \
X(DARK, "Dark") \
X(CLASSIC, "ImGui Classic")
enum Type
{
#define X(symbol, string) symbol,
THEMES
#undef X
COUNT
};
constexpr const char* STRINGS[] = {
#define X(symbol, string) string,
THEMES
#undef X
};
#undef THEMES
}
namespace anm2ed::types::shortcut
{
enum Type