From 8b50003fa81b4f13467854ac2dcd3ac74bd0bcca Mon Sep 17 00:00:00 2001 From: jakob Date: Sat, 2 Nov 2024 07:33:50 +0100 Subject: [PATCH] [file] Move preset ID up in Root config below name --- avs/vis_avs/e_root.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/avs/vis_avs/e_root.h b/avs/vis_avs/e_root.h index 06532ec..5a59c69 100644 --- a/avs/vis_avs/e_root.h +++ b/avs/vis_avs/e_root.h @@ -21,10 +21,10 @@ struct Root_BasedOn_Config : public Effect_Config { struct Root_Config : public Effect_Config { bool clear = false; std::string name; + std::string id; std::string date_init; std::string date_last; std::vector authors; - std::string id; std::vector based_on; }; @@ -68,6 +68,7 @@ struct Root_Info : public Effect_Info { "Clear", "Clear the screen for every new frame"), P_STRING(offsetof(Root_Config, name), "Name", "Name of the preset"), + P_STRING(offsetof(Root_Config, id), "ID", "UUID of the preset"), P_STRING(offsetof(Root_Config, date_init), "Date Initial", "Date of preset's first save"), @@ -81,7 +82,6 @@ struct Root_Info : public Effect_Info { 0, 0, "Authors of the preset"), - P_STRING(offsetof(Root_Config, id), "ID", "UUID of the preset"), P_LIST(offsetof(Root_Config, based_on), "Based On", remix_parameters,