Had to add a few utility functions to replace existing functions. Let me know if these are duplicates.
Details
Details
Diff Detail
Diff Detail
- Repository
- rB Blender
Event Timeline
Comment Actions
Hi, thanks for contributing! Here are some simple comments. I'll take a closer look at this tomorrow.
| source/blender/editors/interface/resources.c | ||
|---|---|---|
| 1328 | Indention here & a few other places needs cleanup. | |
| source/blender/editors/screen/glutil.c | ||
| 216–223 | I think drawing one line is so simple that no helper function is needed. fdrawline will just go away. | |
| source/blender/editors/space_outliner/outliner_draw.c | ||
| 1684–1691 | blender code style if (condition) {
do stuff;
} | |
Comment Actions
Updated the formatting. I'd like to keep the draw line function around. Makes is look cleaner.
| source/blender/editors/screen/glutil.c | ||
|---|---|---|
| 216–223 | Left this in place. If there are strong feelings against this kind of util functions, let me know and I'll delete it. Otherwise it helps reduce clutter. | |
| source/blender/editors/space_outliner/outliner_draw.c | ||
| 1697 | Is there a better way to do this? | |