diff pyink/domview_ui.py @ 1335:194c7a831083

Consistent checking for components and timelines
author Thinker K.F. Li <thinker@codemud.net>
date Mon, 31 Jan 2011 23:21:20 +0800
parents 5da64f67d00d
children 0b5ee9c90af7
line wrap: on
line diff
--- a/pyink/domview_ui.py	Mon Jan 31 19:19:46 2011 +0800
+++ b/pyink/domview_ui.py	Mon Jan 31 23:21:20 2011 +0800
@@ -482,6 +482,16 @@
     def rename_timeline(self, timeline_name, new_name):
         self._dom.rename_timeline(timeline_name, new_name)
         pass
+
+    def refresh_components(self):
+        dock = self._comp_dock
+        dock.refresh_components()
+        pass
+
+    def refresh_timelines(self):
+        dock = self._comp_dock
+        dock.refresh_timelines()
+        pass
     pass