class AutomationObject::State::ShowModal

Show modal hook loop

Public Instance Methods

single_run() click to toggle source
# File lib/automation_object/state/hook_actions/show_modal.rb, line 9
def single_run
  new_modal = composite.screen.modals[blue_prints]

  return false if new_modal.load.live? == false

  new_modal.activate
  true
end