Added scrolling to Diblo UI.
[mevemon] / src / ui / diablo / ui.py
index 8a8bb23..71253a2 100644 (file)
@@ -29,7 +29,7 @@ class mEveMonUI():
     about_name = 'mEveMon'
     about_text = ('Mobile character monitor for EVE Online')
     about_authors = ['Ryan Campbell','Danny Campbell']
-    about_website = 'http://example.site.org'
+    about_website = 'http://mevemon.garage.maemo.org'
     app_version = '0.1'
 
     menu_items = ("Settings", "About", "Refresh")
@@ -58,7 +58,7 @@ class mEveMonUI():
         treeview.set_model(self.char_model)
         self.add_columns_to_treeview(treeview)
 
-        win.add(treeview)
+        win.add_with_scrollbar(treeview)
         win.show_all()
 
         progress_bar.set_fraction( 1 )
@@ -139,7 +139,7 @@ class mEveMonUI():
 
         vbox.pack_start(skills_treeview, False, False, 0)
 
-        win.add(vbox)
+        win.add_with_scrollbar(vbox)
         win.show_all()
 
         progress_bar.set_fraction( 1 )