Skip to content

Commit 7788657

Browse files
switch path node color and selected property color
I thought I fixed this, apparently I switched it instead.
1 parent fd07d75 commit 7788657

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ def updateObject(self, obj : wmwpy.classes.Object | None):
913913

914914
color = 'black'
915915
if obj == self.selectedObject and self.selectedPart['property'] == property:
916-
color = 'blue'
916+
color = 'yellow'
917917

918918
point_id = self.level_canvas.create_circle(
919919
global_pos[0],
@@ -1562,7 +1562,7 @@ def updateObjectName(name):
15621562
logging.debug(f'selectedPart: {self.selectedPart}')
15631563
logging.debug(f'property selected: {self.selectedPart["property"] == property}')
15641564
if self.selectedPart['property'] == property:
1565-
color = 'yellow'
1565+
color = 'blue'
15661566

15671567
options = []
15681568

0 commit comments

Comments
 (0)