Quantcast
Channel: Scripting - McNeel Forum
Viewing all articles
Browse latest Browse all 5745

Bug: PropertyListBox

$
0
0

@Jess wrote:

Hi RMA,

the rs.PropertyListBox i.e. Rhino.UI.Dialogs.ShowPropertyListBox does not like utf-8 characters like Ä Ö Ü and so on. Here a python example:

# -*- coding: utf-8 -*-

import Rhino
import rhinoscriptsyntax as rs

def test():
    keys = ["key1","key2"]
    values = ["one","über"]
    results = rs.PropertyListBox(keys, values, "Edit Values")

    if results:
        print results

test()

Is there a way to work around the problem?

Thanks,
Jess

Posts: 3

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 5745

Trending Articles