diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js
index c85d48133b889c3cfb6cf522966db06a83a67035..d8e56a7e818daf4d865d20ad172ca66e0e48a18e 100644
--- a/pd/nw/pdgui.js
+++ b/pd/nw/pdgui.js
@@ -2792,7 +2792,8 @@ function gui_create_mycanvas(cid,tag,color,x1,y1,x2_vis,y2_vis,x2,y2) {
         height: y2 - y1,
         fill: 'none',
         stroke: color,
-        id: tag + 'drag_handle'
+        id: tag + 'drag_handle',
+        'class': 'border'
         }
     );
     var g = get_gobj(cid,tag);
@@ -2804,9 +2805,9 @@ function gui_update_mycanvas(cid, tag, color, selected) {
     var r = get_item(cid, tag + 'rect');
     var h = get_item(cid, tag + 'drag_handle');
     configure_item(r, { fill: color, stroke: color });
-    if (!selected) {
-        configure_item(h, { stroke: color });
-    }
+//    if (!selected) {
+//        configure_item(h, { stroke: color });
+//    }
 }
 
 function gui_mycanvas_coords(cid, tag, vis_width, vis_height, select_width, select_height) {
@@ -2817,8 +2818,8 @@ function gui_mycanvas_coords(cid, tag, vis_width, vis_height, select_width, sele
 }
 
 function gui_mycanvas_select_color(cid,tag,color) {
-    var item = get_item(cid,tag + 'drag_handle');
-    configure_item(item, {stroke: color});
+//    var item = get_item(cid,tag + 'drag_handle');
+//    configure_item(item, {stroke: color});
 }
  
 function gui_create_scalar(cid, tag, isselected, t1, t2, t3, t4, t5, t6,
diff --git a/pd/src/g_mycanvas.c b/pd/src/g_mycanvas.c
index 1b7abe86fe5a3987730cbb3816cfaec32a589179..dc95e63f518c7ed4822300cabcae7a8d03d29e13 100644
--- a/pd/src/g_mycanvas.c
+++ b/pd/src/g_mycanvas.c
@@ -49,6 +49,8 @@ void my_canvas_draw_move(t_my_canvas *x, t_glist *glist)
     int x1=text_xpix(&x->x_gui.x_obj, glist);
     int y1=text_ypix(&x->x_gui.x_obj, glist);
 
+    iemgui_base_draw_move(&x->x_gui);
+
     //sys_vgui(".x%lx.c coords %lxRECT %d %d %d %d\n",
     //    canvas, x, x1, y1, x1+x->x_vis_w, y1+x->x_vis_h);
     //sys_vgui(".x%lx.c coords %lxBASE %d %d %d %d\n",