aboutsummaryrefslogtreecommitdiff
path: root/pd
diff options
context:
space:
mode:
authorMiller Puckette <millerpuckette@users.sourceforge.net>2004-09-06 22:37:26 +0000
committerMiller Puckette <millerpuckette@users.sourceforge.net>2004-09-06 22:37:26 +0000
commitb02b33bcca8f01852bf16ad214e2d509e5e14903 (patch)
tree0ee748fe6b7271c416542440bda469b93673d034 /pd
parent43da63a095b3bbcea1009337f1af027a04499266 (diff)
Fixed a bug
svn path=/trunk/; revision=2014
Diffstat (limited to 'pd')
-rw-r--r--pd/src/g_text.c5
-rw-r--r--pd/src/notes.txt1
-rw-r--r--pd/src/s_main.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/pd/src/g_text.c b/pd/src/g_text.c
index 472cb1c6..86bd66a1 100644
--- a/pd/src/g_text.c
+++ b/pd/src/g_text.c
@@ -1159,7 +1159,7 @@ void text_drawborder(t_text *x, t_glist *glist,
height = y2 - y1;
if (x->te_type == T_OBJECT)
{
- char *pattern = ((pd_class(&x->te_pd) == text_class) ? "." : "\"\"");
+ char *pattern = ((pd_class(&x->te_pd) == text_class) ? "-" : "\"\"");
if (firsttime)
sys_vgui(".x%lx.c create line\
%d %d %d %d %d %d %d %d %d %d -dash %s -tags %sR\n",
@@ -1171,7 +1171,8 @@ void text_drawborder(t_text *x, t_glist *glist,
%d %d %d %d %d %d %d %d %d %d\n",
glist_getcanvas(glist), tag,
x1, y1, x2, y1, x2, y2, x1, y2, x1, y1);
- sys_vgui(".x%lx.c itemconfigure -dash %s\n", pattern);
+ sys_vgui(".x%lx.c itemconfigure -dash %s\n",
+ glist_getcanvas(glist), pattern);
}
}
else if (x->te_type == T_MESSAGE)
diff --git a/pd/src/notes.txt b/pd/src/notes.txt
index 4391cf7c..59ae31e7 100644
--- a/pd/src/notes.txt
+++ b/pd/src/notes.txt
@@ -27,6 +27,7 @@ new filter objects: cpole~, fpole~, etc.
put in Wini's RME ALSA code; there are still bugs...
portaudio fixed for inchans != outchans, e.g., emi emagic (2/6)
sprout inlets/outlets on objects whose creation failed.
+uploaded to CVS
doc:
document env~ second argument (and why is it no less than 1/10 of first???)
diff --git a/pd/src/s_main.c b/pd/src/s_main.c
index e049a5d1..94fc720c 100644
--- a/pd/src/s_main.c
+++ b/pd/src/s_main.c
@@ -7,7 +7,7 @@
* 1311:forum::für::umläute:2001
*/
-char pd_version[] = "Pd version 0.38 TEST 5\n";
+char pd_version[] = "Pd version 0.38 TEST 6\n";
char pd_compiletime[] = __TIME__;
char pd_compiledate[] = __DATE__;