Skip to content

Commit

Permalink
[file] Move preset ID up in Root config below name
Browse files Browse the repository at this point in the history
  • Loading branch information
grandchild committed Nov 2, 2024
1 parent 6a333e6 commit 8b50003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avs/vis_avs/e_root.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<Root_Author_Config> authors;
std::string id;
std::vector<Root_BasedOn_Config> based_on;
};

Expand Down Expand Up @@ -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"),
Expand All @@ -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<Root_BasedOn_Config>(offsetof(Root_Config, based_on),
"Based On",
remix_parameters,
Expand Down

0 comments on commit 8b50003

Please sign in to comment.