Hi,<br><br><div class="gmail_quote"><span dir="ltr"></span><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">
> -        vt.drag_dest_set(gtk.DEST_DEFAULT_MOTION | gtk.DEST_DEFAULT_DROP,<br>
> -               [('text/plain', 0, 0), ('STRING', 0, 1)],<br>
> -               gtk.gdk.ACTION_DEFAULT |<br>
> -               gtk.gdk.ACTION_COPY)<br>
> -        vt.connect('drag_data_received', self.__drag_data_received_cb)<br>
> +        #vt.drag_dest_set(Gtk.DestDefaults.MOTION | Gtk.DestDefaults.DROP,<br>
> +        #       [('text/plain', 0, 0), ('STRING', 0, 1)],<br>
> +        #       Gdk.DragAction.DEFAULT |<br>
> +        #       Gdk.DragAction.COPY)<br>
> +        #vt.connect('drag_data_received', self.__drag_data_received_cb)<br>
<br>
</div><br>Why these lines are commented?<br></blockquote><div>There were problems with drag and drop, and we didn't find utility connecting the Vte Terminal to drag and drop events.<br><br></div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">


<div class="im"><br>
<br>
> -        scrollbar = gtk.VScrollbar(vt.get_adjustment())<br>
> +        scrollbar = Gtk.VScrollbar(vt.get_vadjustment())<br>
<br>
</div>I don't know why (yet) but I'm getting this error on Fedora 16 with<br>
jhbuild: <a href="http://fpaste.org/iyeO/" target="_blank">http://fpaste.org/iyeO/</a> 
<br></blockquote><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
I don't have this problem with Debian Testing.<br>
<div class="im"><br>
> -        box = gtk.HBox()<br>
> -        box.pack_start(vt)<br>
> -        box.pack_start(scrollbar)<br>
> +        box = Gtk.HBox()<br>
> +        box.pack_start(vt, True, True, 0)<br>
> +        box.pack_start(scrollbar, True, True, 0)<br>
<br>
</div>Here, you should pass False to the last box.pack_start:<br>
<br>
box.pack_start(scrollbar, False, True, 0)<br>
<br>
This is because you don't want to expand the ScrollBar, we want to put<br>
it just on the right of the screen.<br>
<br>
With True when a new tab is opened you will see a portion of the<br>
screen that is not used by Vte, instead it is used by the ScrollBar<br>
and if you open a new tab and switch between them many times you will<br>
get the correct proportion :)<br>
<br></blockquote><div>Yes, but if we pass True, Sugar doesn't show the Scrollbar in the Window, there was a long discussion yesterday, in the Sugar Code Sprint about that. I think there's missing a FIXME.<br><br>

Regards,<br>Daniel Francis.<br></div></div>