class Clutter::Actor

Public Instance Methods

save_easing_state() { || ... } click to toggle source
# File lib/clutter/actor.rb, line 21
def save_easing_state
  if block_given?
    save_easing_state_without_block
    begin
      yield
    ensure
      restore_easing_state
    end
  else
    save_easing_state_without_block
  end
end
save_easing_state_without_block()

TODO: use prepend after Ruby 1.9 support is dropped.

Alias for: save_easing_state