-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Labels
Description
I can see it on Win10(64bit) RM2019 -> SUPro2019(english ver) with SURubyDebugger.dll 1.2.0.0 with national encoded symbols in string variables!
for example
instead dname="1ящик" Rubymine shows in ‘watch’ window dname="1"
instead dname="полка" Rubymine shows dname=""
other words national symbols has been cutted… But in result of script job in Sketchup all values are work correctly. Only not visible by debugging time in RM.
National symbols was cutted but digit stay in place.
Usualy I can see wrong symbols when encoding incorrect.
but this case different!
Perhaps something wrong with my settings!
But the tests RM2019 with SU2016 and SURubyDebagger 1.0.2.0 - the variables printed correct.
You can use this script for repeat my case:
require 'sketchup'
module TESTEM
@arr = %w(тест тест2 3 test)
def TESTEM.met
@arr.each do |val|
puts val
end
end
end