correctly linking frames and messages

This commit is contained in:
Torsten Ruger
2015-06-28 22:02:07 +03:00
parent 31635d9747
commit 8674c322c4
6 changed files with 26 additions and 20 deletions

View File

@ -5,6 +5,11 @@
module Parfait
class Message < Object
def initialize next_m
@next_message = next_m
super()
end
def get_type_for(name)
index = @layout.get_index(name)
get_at(index)