* system/fluents.py: Fixed a bug where the the application tried to load

a toolbar from None

 * system/plots.py: Fixed MainView.insert_view that was a no-op when in large
   view.

 * system/dataset.py: Changed __str__ of dataset to also show names of dimensions.
This commit is contained in:
2006-07-21 14:30:09 +00:00
parent aca9a47f56
commit 87f87e36c8
4 changed files with 21 additions and 13 deletions

View File

@@ -207,7 +207,10 @@ class MainView (gtk.Notebook):
self.set_current_page(0)
def insert_view(self, view):
vf = self.get_active_small_view()
if self.get_current_page() == 0:
vf = self.get_active_small_view()
else:
vf = self._large_view
vf.set_view(view)
def show(self):