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:
Diffstat (limited to 'source/blender/src/drawtext.c')
-rw-r--r--source/blender/src/drawtext.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/src/drawtext.c b/source/blender/src/drawtext.c
index f0a83bc7db4..7dd5539de15 100644
--- a/source/blender/src/drawtext.c
+++ b/source/blender/src/drawtext.c
@@ -1427,7 +1427,7 @@ void winqreadtextspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
if (event==RIGHTMOUSE) {
switch (pupmenu("File %t|New %x0|Open... %x1")) {
case 0:
- st->text= add_empty_text();
+ st->text= add_empty_text("Text");
st->top= 0;
allqueue(REDRAWTEXT, 0);
@@ -1442,7 +1442,7 @@ void winqreadtextspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
if (event==FKEY && G.qual == (LR_ALTKEY|LR_SHIFTKEY)) {
switch (pupmenu("File %t|New %x0|Open... %x1")) {
case 0:
- st->text= add_empty_text();
+ st->text= add_empty_text("Text");
st->top= 0;
allqueue(REDRAWTEXT, 0);
@@ -1460,7 +1460,7 @@ void winqreadtextspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
}
else if (event==NKEY) {
if (G.qual & LR_ALTKEY) {
- st->text= add_empty_text();
+ st->text= add_empty_text("Text");
st->top= 0;
allqueue(REDRAWTEXT, 0);
@@ -1499,7 +1499,7 @@ void winqreadtextspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
switch(p) {
case 0:
- st->text= add_empty_text();
+ st->text= add_empty_text("Text");
st->top= 0;
allqueue(REDRAWTEXT, 0);
@@ -1599,7 +1599,7 @@ void winqreadtextspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
if (G.qual == (LR_ALTKEY|LR_SHIFTKEY)) {
switch(pupmenu("File %t|New %x0|Open... %x1|Save %x2|Save As...%x3")) {
case 0:
- st->text= add_empty_text();
+ st->text= add_empty_text("Text");
st->top= 0;
allqueue(REDRAWTEXT, 0);
@@ -1640,7 +1640,7 @@ void winqreadtextspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
break; /* BREAK M */
case NKEY:
if (G.qual == LR_ALTKEY) {
- st->text= add_empty_text();
+ st->text= add_empty_text("Text");
st->top= 0;
allqueue(REDRAWTEXT, 0);