Added 'helldon' to transparently port the thing to the desktop :P
[jamaendo] / jamaui / playlists.py
index 714ec55..3012e29 100644 (file)
 #  (based on http://pygstdocs.berlios.de/pygst-tutorial/seeking.html)
 #
 import gtk
-import hildon
+try:
+    import hildon
+except:
+    import helldon as hildon
 import jamaendo
 from settings import settings
 import logging
@@ -113,6 +116,7 @@ class PlaylistsWindow(hildon.StackableWindow):
         col = gtk.TreeViewColumn('Info')
         self.treeview.append_column(col)
         cell = gtk.CellRendererText()
+        cell.set_property('xalign', 1.0)
         col.pack_start(cell, True)
         col.add_attribute(cell, 'text', self.COL_INFO)