diff --git a/pd/nw/pd_canvas.html b/pd/nw/pd_canvas.html
index ffe747d0d7474ee23cd0115dba0cc80462cdca3b..5a7a7f7e42b43bdac41d60731275e479b2502851 100644
--- a/pd/nw/pd_canvas.html
+++ b/pd/nw/pd_canvas.html
@@ -61,8 +61,8 @@ var canvas_events = (function() {
                 //pdgui.gui_post("x: " + evt.pageX + " y: " + evt.pageY +
                 //    " modifier: " + (evt.shiftKey + (evt.ctrlKey << 1)));
                 pdgui.pdsend(name +
-                " motion " + evt.pageX + " " + evt.pageY + " " +
-                (evt.shiftKey + (evt.ctrlKey << 1)));
+                    " motion " + evt.pageX + " " + evt.pageY + " " +
+                    (evt.shiftKey + (evt.ctrlKey << 1)));
                 evt.stopPropagation();
                 evt.preventDefault();
                 return false;
diff --git a/pd/src/g_rtext.c b/pd/src/g_rtext.c
index dda5ec0c1e93519cd3a2221a3630a3217837cba7..c5b7317df67255aeab60c1c06833c814e77ffdd6 100644
--- a/pd/src/g_rtext.c
+++ b/pd/src/g_rtext.c
@@ -599,8 +599,8 @@ void rtext_activate(t_rtext *x, int state)
        state = 2 editing a new object
        State 2 isn't necessary, except that Pd has
        traditionally had this "floating" state for
-       new objects where the box text also happens
-       to be editable
+       new objects where the box text is editable and
+       the box position follows the mouse
     */
 
     widthspec = x->x_text->te_width; // width if any specified
diff --git a/pd/src/g_text.c b/pd/src/g_text.c
index 1b845b50db5778eb5cffaf526d678c9d1fb268e4..cb77f09b6d867d506c7dac83b58ebbe12daaa713 100644
--- a/pd/src/g_text.c
+++ b/pd/src/g_text.c
@@ -794,7 +794,8 @@ void canvas_msg(t_glist *gl, t_symbol *s, int argc, t_atom *argv)
         glist_add(gl, &x->m_text.te_g);
         glist_noselect(gl);
         glist_select(gl, &x->m_text.te_g);
-        gobj_activate(&x->m_text.te_g, gl, 1);
+        gobj_activate(&x->m_text.te_g, gl,
+            2); // <-- hack to signal we're a new message box
         if (connectme == 1)
             canvas_connect(gl, indx, 0, nobj, 0);
         else if (connectme == 0)