5 registers per row for better view

This commit is contained in:
Torsten Ruger
2018-04-04 13:16:59 +03:00
parent c2d69c767c
commit 7a9e10fb5f
7 changed files with 159 additions and 168 deletions

View File

@ -45,7 +45,7 @@ class ObjectView < ListView
end
def content_elements
fields = [ConstantView.new("li" , "-------------------------")]
fields = [ConstantView.new("li" , "----------------------------------")]
object = @object
if object and ! object.is_a?(String)
object.get_instance_variables.each do |variable|

View File

@ -56,7 +56,8 @@ class SelectView < ElementView
def get_codes
{set_internal_byte: "return 'Hello'.set_internal_byte(1,75)" ,
called_if: 'if( 10 ); return "then";else;return "else";end' ,
hello_world: "return 'Hello again'.putstring"
hello_world: "h = 'Hello World'.putstring;return h",
dynamic_call: "a = 15 ; return a.div10",
}
end