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-03-24 02:27:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-24 02:36:42 +0300
commitd0d251b53b7114a52d1253b022acb04d84e39507 (patch)
tree7cc5f718adfffe9158cd4cfbe20e2aa6ae3a341d /source/blender/editors/screen
parent9c280630c96e3fa7194166350bd7197d28c5428f (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/screen')
-rw-r--r--source/blender/editors/screen/screen_ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c
index fccdf3f06f3..2506c7472e3 100644
--- a/source/blender/editors/screen/screen_ops.c
+++ b/source/blender/editors/screen/screen_ops.c
@@ -3992,7 +3992,7 @@ static bool region_toggle_poll(bContext *C)
{
ScrArea *area = CTX_wm_area(C);
- /* don't flip anything around in topbar */
+ /* Don't flip anything around in top-bar. */
if (area && area->spacetype == SPACE_TOPBAR) {
CTX_wm_operator_poll_msg_set(C, "Toggling regions in the Top-bar is not allowed");
return 0;
@@ -4060,7 +4060,7 @@ static bool region_flip_poll(bContext *C)
{
ScrArea *area = CTX_wm_area(C);
- /* don't flip anything around in topbar */
+ /* Don't flip anything around in top-bar. */
if (area && area->spacetype == SPACE_TOPBAR) {
CTX_wm_operator_poll_msg_set(C, "Flipping regions in the Top-bar is not allowed");
return 0;
@@ -4191,7 +4191,7 @@ void ED_screens_footer_tools_menu_create(bContext *C, uiLayout *layout, void *UN
uiItemO(layout, but_flip_str, ICON_NONE, "SCREEN_OT_region_flip");
- /* file browser should be fullscreen all the time, topbar should
+ /* File browser should be fullscreen all the time, top-bar should
* never be. But other regions can be maximized/restored... */
if (!ELEM(sa->spacetype, SPACE_FILE, SPACE_TOPBAR)) {
uiItemS(layout);