Skip to content

Commit

Permalink
only open web browser for links on deck description
Browse files Browse the repository at this point in the history
otherwise clicking on 'more...' will open the web browser
  • Loading branch information
dae committed Jan 14, 2013
1 parent d97b199 commit ca1c461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aqt/overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _linkHandler(self, url):
openLink(aqt.appShared+"info/%s?v=%s"%(self.sid, self.sidVer))
elif url == "studymore":
self.onStudyMore()
else:
elif url.lower().startswith("http"):
openLink(url)

def _keyHandler(self, evt):
Expand Down

0 comments on commit ca1c461

Please sign in to comment.