remove print statement

This commit is contained in:
onyx-and-iris 2023-09-02 04:51:17 +01:00
parent b3771b13c0
commit 084177ea2d

View File

@ -247,7 +247,6 @@ class NVDAVMWindow(psg.Window):
index = int(data["Index"]) - 1 index = int(data["Index"]) - 1
match tab: match tab:
case "Physical Strip" | "Virtual Strip": case "Physical Strip" | "Virtual Strip":
print(self.cache["labels"]["strip"][f"STRIP {index}||LABEL"])
label = data.get("Edit") or self.cache["labels"]["strip"][f"STRIP {index}||LABEL"] label = data.get("Edit") or self.cache["labels"]["strip"][f"STRIP {index}||LABEL"]
self.vm.strip[index].label = label self.vm.strip[index].label = label
self[f"STRIP {index}||LABEL"].update(value=label) self[f"STRIP {index}||LABEL"].update(value=label)