1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

tk.rb: update dropped

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@37 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 1998-01-21 06:35:17 +00:00
parent 8373f59a32
commit a8852f4ad9

View file

@ -241,6 +241,15 @@ module TkComm
uninstall_cmd myid
})
end
def update(idle=nil)
if idle
tk_call 'update', 'idletasks'
else
tk_call 'update'
end
end
end
module TkCore