|
@@ -352,9 +352,14 @@ class GUI_FixtureEditor():
|
|
|
elm._set_nr("Number!") #"ERROR") #nr["text"] = "ERR"
|
|
|
if mode == "set_attr":
|
|
|
#print(" ->")
|
|
|
+ name = name.upper()
|
|
|
+ name = name.strip()
|
|
|
+ while " " in name:
|
|
|
+ name = name.replace(" "," ")
|
|
|
if name.endswith(" FINE"):
|
|
|
name = name.replace(" FINE","-FINE")
|
|
|
- elm.label["text"] = name
|
|
|
+ print(dir(elm))
|
|
|
+ elm.attr["text"] = name
|
|
|
|
|
|
|
|
|
def count_ch(self):
|
|
@@ -372,6 +377,9 @@ class GUI_FixtureEditor():
|
|
|
if txt.startswith("EMPTY"):
|
|
|
elem.attr["bg"] = "#fa0"
|
|
|
elem.attr["activebackground"] = "#ff0"
|
|
|
+ elif txt == "END":
|
|
|
+ elem.attr["bg"] = "yellow"
|
|
|
+ elem.attr["activebackground"] = "yellow"
|
|
|
elif txt.endswith("-FINE"):
|
|
|
elem.attr["bg"] = "#0b0"
|
|
|
elem.attr["activebackground"] = "#ff0"
|