Fix logo for long version strings
This commit is contained in:
parent
cb29a6829c
commit
9ffb8d0c9f
1 changed files with 7 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
module Widgets
|
||||
class Logo < React::Component
|
||||
LOGO = [
|
||||
TMP_LOGO = [
|
||||
' _____ ___ _ _ ___ _ _ ',
|
||||
' |_ _/ _ \ \/ / _ \| \ | | ',
|
||||
' | || | | \ / | | | \| | ',
|
||||
|
@ -15,8 +15,10 @@ module Widgets
|
|||
' ',
|
||||
].freeze
|
||||
|
||||
WIDTH = LOGO.first.length
|
||||
HEIGHT = LOGO.length
|
||||
WIDTH = TMP_LOGO.first.length
|
||||
HEIGHT = TMP_LOGO.length
|
||||
|
||||
LOGO = TMP_LOGO.map { |s| s.ljust WIDTH }.freeze
|
||||
|
||||
def render
|
||||
create_element :window, x: props[:x], y: props[:y], width: props[:width], height: props[:height] do
|
||||
|
|
Reference in a new issue