Skip to content

Commit

Permalink
- fix multipage compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Hart committed Jul 29, 2024
1 parent 62e139d commit e9a7ea9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions hi_tools/hi_multipage/ActionComponents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@
*/


#include "ActionComponents.h"
#include "ActionComponents.h"

namespace hise {
namespace multipage {
Expand Down Expand Up @@ -93,9 +91,9 @@ void Action::createBasicEditor(T& t, Dialog::PageInfo& rootList, const String& h
});

rootList.addChild<Button>({
{ mpid::ID, mpid::SkipIfFalse.toString() },
{ mpid::Text, mpid::SkipIfFalse.toString() },
{ mpid::Value, infoObject[mpid::SkipIfFalse] },
{ mpid::ID, mpid::SkipIfTrue.toString() },
{ mpid::Text, mpid::SkipIfTrue.toString() },
{ mpid::Value, infoObject[mpid::SkipIfTrue] },
{ mpid::Help, "Whether the action should be skipped if the state value is false" }
});

Expand Down
2 changes: 1 addition & 1 deletion hi_tools/simple_css/simple_css.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,6 @@ struct CssTestSuite: public UnitTest
}
};

static CssTestSuite cssTests;
//static CssTestSuite cssTests;
}
}

0 comments on commit e9a7ea9

Please sign in to comment.