Hi everyone,<br><br>I am having a hell of a time trying to get an
GtkIconView working correctly with the pannable area widget. Using
hildon.GtkIconView I am able to pan by using the scrollwheel on my
mouse, but if i click anywhere to start panning, it immediately
activates whatever was clicked on. gtk.IconView does pretty much
exactly the same thing. Removing the connect function obviously allows
you to pan freely. <br>

<br>Code is as follows (I&#39;ve left in various settings etc for completeness&#39; sake):<br>------------<br>pan_area = hildon.PannableArea()<br>model = gtk.ListStore(str, gtk.gdk.Pixbuf)<br><br>for item in xmlf:<br>    thumbnail_data = gtk.gdk.pixbuf_new_from_file(<div id=":b1" class="ii gt">

cache_path_thumbs + item[&quot;filename&quot;])<br>

    model.append([str(item[&#39;name&#39;]), thumbnail_data])<br>            <br>grid = hildon.GtkIconView(gtk.HILDON_UI_MODE_NORMAL, model) <br> grid.set_selection_mode(gtk.SELECTION_SINGLE) <br>grid.set_pixbuf_column(1)<br>



 grid.set_columns(4)<br> grid.set_item_width(190)<br>grid.set_spacing(thumbnail_spacing)<br>grid.connect(&#39;selection-changed&#39;, self.thumbnailSelect, model, window)<br>pan_area.add_with_viewport(grid)<br>------------<br>



<br>Points of note: I&#39;m using the Vmware SDK. I know that has a few
bugs so maybe this is one of them. As mentioned, the scrollwheel does
pan the area, so pannable area is working as intended.<br><br>Does anyone have any ideas? this is a pretty critical issue and I don&#39;t know of anyone else who&#39;s managed to get this working.<br>

<br>What am I doing wrong? <br><br>Thanks!</div>