Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
cli-old/lib/widgets/chat/info.rb
2017-07-25 14:36:28 +00:00

22 lines
430 B
Ruby

# frozen_string_literal: true
module Widgets
class Chat < VPanel
class Info < Base
def draw
setpos 0, 0
Style.default.online_mark window do
addstr '[Online]'
end
addstr ' '
Style.default.peer_info_name window do
addstr props[:name]
end
setpos 0, 1
addstr 'Public key: '
addstr props[:public_key]
end
end
end
end