Skip to content

Commit

Permalink
f: inserted dates should be an absolute path/link
Browse files Browse the repository at this point in the history
  • Loading branch information
Osndok committed Dec 14, 2018
1 parent c8e22fa commit 5b6c5d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zim/gui/pageview.py
Original file line number Diff line number Diff line change
Expand Up @@ -6564,7 +6564,7 @@ def do_response_ok(self):

text = model[iter][self.DATE_COL]
if self.link and self.linkbutton.get_active():
self.buffer.insert_link_at_cursor(text, self.link.name)
self.buffer.insert_link_at_cursor(text, ':'+self.link.name)
else:
self.buffer.insert_at_cursor(text)

Expand Down

1 comment on commit 5b6c5d8

@introt
Copy link

@introt introt commented on 5b6c5d8 Dec 30, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense. I've opened zim-desktop-wiki#1847, thanks for bringing this to my attention!

Please sign in to comment.