mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
only open web browser for links on deck description
otherwise clicking on 'more...' will open the web browser
This commit is contained in:
parent
d97b199abe
commit
ca1c461348
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ class Overview(object):
|
|||
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):
|
||||
|
|
Loading…
Reference in a new issue