~awojdel/moovida/account_simplified

« back to all changes in this revision

Viewing changes to elisa-plugins/elisa/plugins/account/video.py

  • Committer: Anna Wojdel
  • Date: 2009-11-11 15:02:15 UTC
  • Revision ID: awojdel@fluendo.com-20091111150215-pfbj6faa4t40wuhc
display Settings Account controller for user not logged in as 'normal' popup

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 
57
57
    def _message_eos_cb(self, bus, message):
58
58
        self.pipeline.set_state(gst.STATE_NULL)
59
 
        dfr = self.browser.load_new_controller('/poblesec/new_account/first_run_intro')
 
59
        dfr = self.browser.load_new_controller('/poblesec/new_account/intro')
60
60
 
61
61
    def handle_input(self, manager, event):
62
62
        # Stop video when pressing <ENTER>
63
63
        if event.value == EventValue.KEY_OK:
64
64
            self.pipeline.set_state(gst.STATE_NULL)
65
 
            dfr = self.browser.load_new_controller('/poblesec/new_account/first_run_intro')
 
65
            dfr = self.browser.load_new_controller('/poblesec/new_account/intro')
66
66
            # FIXME: lost deferred
67
67
            return True
68
68