Skip to content

Commit 7dfc573

Browse files
authored
Merge pull request #26 from mikevanis/master
fix bug with project url updating
2 parents 5054723 + 1140595 commit 7dfc573

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

esptool-python-gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ def on_serial_refresh(self, event):
475475
def on_projects_choice(self, event):
476476
choice = event.GetEventObject()
477477
for project in self.projects_list:
478-
if project['name'] == choice:
478+
if project['name'] == choice.GetString(choice.GetSelection()):
479479
self.current_project_url = project['releaseUrl']
480480

481481
def on_serial_choice(self, event):

0 commit comments

Comments
 (0)