Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-05-29 05:58:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-05-29 05:58:29 +0300
commitd1f4adab24ad2b636de145843ab1e14ff4b41ae6 (patch)
tree40b9cd3840d422f3ae3e250cd5f57f49b6abe51d /source/blender/blenkernel/BKE_screen.h
parentdbdb8a335545d1f7287b9474e54f40b685a48fad (diff)
Cleanup: spelling, correct reference to 'Mesh.mcol'
Diffstat (limited to 'source/blender/blenkernel/BKE_screen.h')
-rw-r--r--source/blender/blenkernel/BKE_screen.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/blenkernel/BKE_screen.h b/source/blender/blenkernel/BKE_screen.h
index 85c7c92a01d..fc7146b8cf4 100644
--- a/source/blender/blenkernel/BKE_screen.h
+++ b/source/blender/blenkernel/BKE_screen.h
@@ -234,17 +234,17 @@ typedef struct PanelType {
/** Reorder function, called when drag and drop finishes. */
void (*reorder)(struct bContext *C, struct Panel *pa, int new_index);
/**
- * Get the panel and subpanel's expansion state from the expansion flag in the corresponding data
- * item. Called on draw updates.
- * \note Subpanels are indexed in depth first order, the visualorder you would see if all panels
- * were expanded.
+ * Get the panel and sub-panel's expansion state from the expansion flag in the corresponding
+ * data item. Called on draw updates.
+ * \note Sub-panels are indexed in depth first order,
+ * the visual order you would see if all panels were expanded.
*/
short (*get_list_data_expand_flag)(const struct bContext *C, struct Panel *pa);
/**
- * Set the expansion bitfield from the closed / open state of this panel and its subpanels.
+ * Set the expansion bit-field from the closed / open state of this panel and its sub-panels.
* Called when the expansion state of the panel changes with user input.
- * \note Subpanels are indexed in depth first order, the visual order you would see if all panels
- * were expanded.
+ * \note Sub-panels are indexed in depth first order,
+ * the visual order you would see if all panels were expanded.
*/
void (*set_list_data_expand_flag)(const struct bContext *C, struct Panel *pa, short expand_flag);