X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=lib%2Fredact%2Fpart.rb;h=692a48793d757ab87d3a1c44ece009ed61a2be81;hb=cd7f31e07365f2ba92661e57029d0c0648e73319;hp=8173e71d51fe0d3484b507cdb44426d9289a65fc;hpb=8198cf0b74f58dbcfa16dd68d72678725b532060;p=redact.git diff --git a/lib/redact/part.rb b/lib/redact/part.rb index 8173e71..692a487 100644 --- a/lib/redact/part.rb +++ b/lib/redact/part.rb @@ -1,5 +1,5 @@ #-- -# $Id: part.rb 67 2005-09-19 19:46:43Z tilman $ +# $Id: part.rb 69 2005-09-19 20:17:07Z tilman $ # # Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de) # @@ -112,6 +112,7 @@ module Redact "dragable.y" => [@dragable.enabled[1], :char], "dragable.step_y" => [@dragable.step[1]], "dragable.count_y" => [@dragable.count[1]], + "dragable.events_id" => [-1], "dragable.counfine_id" => [confine_id]} # not a typo! end @@ -202,13 +203,13 @@ module Redact attr_reader :rel, :to_id, :offset def initialize(rel, offset) - @rel = [rel, rel] + @rel = [rel.to_f, rel.to_f] @to_id = [-1, -1] @offset = [offset, offset] end def set_rel(x, y) - @rel = [x, y] + @rel = [x.to_f, y.to_f] end def set_offset(x, y)