Skip to content

Commit

Permalink
fix error in opening images
Browse files Browse the repository at this point in the history
  • Loading branch information
Sg4Dylan committed Apr 2, 2020
1 parent d1ad823 commit fb1e4a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def openfile(self):
def double_click_cell(self, info):
row = info.row()
column = info.column()
os.system(f'"{self.resultTable.item(row, column).text()}"')
os.startfile(self.resultTable.item(row, column).text())


def start(self):
Expand Down

0 comments on commit fb1e4a3

Please sign in to comment.