Skip to content

Commit bb89bf0

Browse files
committed
Work on DataTree and classes
1 parent a5991c6 commit bb89bf0

22 files changed

+14654
-3
lines changed

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ This document provides directive guidelines for AI assistants working on the YUP
1313

1414
## Code Generation Rules
1515

16+
**NEVER EVER run bash commands to configure, compile or test the implementation, acknowledge that we should test and we'll run and report any issue.**
17+
1618
### 1. File Headers
1719
**ALWAYS** start new files with this exact header:
1820

@@ -296,8 +298,6 @@ TEST (ClassNameTests, StaticMethodBehavesCorrectly)
296298
4. **Group related tests** in test fixtures
297299
5. **Keep tests independent** and deterministic
298300
6. **Never Use C or C++ macros (like M_PI)** use yup alternatives
299-
7. **EXCLUSIVELY use `just test`** to compile and execute tests
300-
8. **NEVER start compilation or tests** unless told explicitly
301301

302302
### When suggesting refactoring:
303303
1. **Maintain existing API contracts**

docs/Building Plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public:
7676

7777
void paint (yup::Graphics& g) override
7878
{
79-
g.fillAll (getLookAndFeel().findColour (yup::ResizableWindow::backgroundColourId));
79+
g.fillAll (findColour (yup::ResizableWindow::backgroundColourId));
8080
}
8181

8282
private:

0 commit comments

Comments
 (0)