Skip to content

Commit

Permalink
switch path node color and selected property color
Browse files Browse the repository at this point in the history
I thought I fixed this, apparently I switched it instead.
  • Loading branch information
ego-lay-atman-bay committed Jul 11, 2024
1 parent fd07d75 commit 7788657
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ def updateObject(self, obj : wmwpy.classes.Object | None):

color = 'black'
if obj == self.selectedObject and self.selectedPart['property'] == property:
color = 'blue'
color = 'yellow'

point_id = self.level_canvas.create_circle(
global_pos[0],
Expand Down Expand Up @@ -1562,7 +1562,7 @@ def updateObjectName(name):
logging.debug(f'selectedPart: {self.selectedPart}')
logging.debug(f'property selected: {self.selectedPart["property"] == property}')
if self.selectedPart['property'] == property:
color = 'yellow'
color = 'blue'

options = []

Expand Down

0 comments on commit 7788657

Please sign in to comment.