def event(self, e):
     """ event(e: QEvent)
     Parse QPluginOperationEvent and store it to Visrails
     """
     if (e.type()==QPluginOperationEvent.eventType) \
     and (self.viewManager.currentWidget()!=None):
         controller = self.viewManager.currentWidget().controller
         if e.fromVersion>=0:
             self.changeVersionWithoutUpdatingApp(e.fromVersion)
         controller.update_scene_script(e.name, e.details, e.snapshot, e.operations)
         return False
     return QBuilderWindow.event(self, e)