src/Builder4/Editor.bjs
[roobuilder] / src / Builder4 / Editor.vala
index 3787eda..c6455ab 100644 (file)
@@ -552,8 +552,11 @@ public class Editor : Object
 
                        //listeners
                        this.el.query_tooltip.connect( (x, y, keyboard_tooltip, tooltip) => {
+                               var lbl = new Gtk.Label(this.el.tooltip_markup);
+                               lbl.width_request = 700;
+                               tooltip.set_custom(lbl);
                        
-                               return bool;
+                               return true;
                        });
                }