micha 5 сар өмнө
parent
commit
523a71e33b
4 өөрчлөгдсөн 16 нэмэгдсэн , 1 устгасан
  1. 2 0
      tkgui/GUI.py
  2. 3 0
      tkgui/draw.py
  3. 9 1
      tkgui/fix.py
  4. 2 0
      tksdl/fix.py

+ 2 - 0
tkgui/GUI.py

@@ -407,6 +407,8 @@ class GUI_FIX():
             attr_list = []    
             for attr in data["ATTRIBUT"]:
                 
+                if attr == "END":
+                    continue
                 if attr.endswith("-FINE"):
                     continue
                 #if attr.startswith("_"):

+ 3 - 0
tkgui/draw.py

@@ -401,6 +401,9 @@ def draw_enc(gui,xframe,data=[]):
         for i in range(24-len(eat)):
             eat.append("")
     for attr in eat:
+
+        if attr == "END":
+            continue
         if attr.endswith("-FINE"):
             continue
         v=0

+ 9 - 1
tkgui/fix.py

@@ -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"

+ 2 - 0
tksdl/fix.py

@@ -268,6 +268,8 @@ def is_active_fix(v):
 def is_hidden_attr(attr_name):
     if attr_name.endswith("-FINE"):
         return 1
+    if attr_name == "END":
+        return 1
     if attr_name.startswith("_"):
         return 1
     return 0