# HG changeset patch # User Thinker K.F. Li # Date 1295710341 -28800 # Node ID 6090be0109271c01d58940b53dad90ad7a46cf15 # Parent ab21c148b3c605159d9418efbc41c92902edbf80 Fix issue of selecting frames - User can not switching frames any more after user switching component. - It is caused by frameline_stack.remove_all_framelines() which reset active frame callback. - It is fixed by stoping it. diff -r ab21c148b3c6 -r 6090be010927 pyink/domview_ui.py --- a/pyink/domview_ui.py Sat Jan 22 22:09:43 2011 +0800 +++ b/pyink/domview_ui.py Sat Jan 22 23:32:21 2011 +0800 @@ -118,6 +118,8 @@ pass pass + ## \brief Remove all framelines from the stack. + # def remove_all_framelines(self): num = len(self._framelines) @@ -130,7 +132,6 @@ self._framelines = [] self._last_mouse_over_frameline = None self._last_active_frameline = None - self._active_frame_callback = None pass def init_framelines(self):