mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
E-book viewer: The quick highlight button should replace the style of an existing highlight, when one is selected. Fixes #1926518 [[Viewer] Quick highlighting a already highlighted text should replace the original highlighting](https://bugs.launchpad.net/calibre/+bug/1926518)
This commit is contained in:
parent
f0f7256e7b
commit
1471322f49
@ -1027,12 +1027,16 @@ class SelectionBar:
|
|||||||
cs = self.view.currently_showing.selection
|
cs = self.view.currently_showing.selection
|
||||||
if cs.text:
|
if cs.text:
|
||||||
if cs.annot_id:
|
if cs.annot_id:
|
||||||
self.create_highlight()
|
am = self.annotations_manager
|
||||||
|
self.current_notes = am.notes_for_highlight(cs.annot_id) or ''
|
||||||
|
self.send_message(
|
||||||
|
'apply-highlight', style=self.current_highlight_style.style, uuid=short_uuid(), existing=cs.annot_id, has_notes=v'!!self.current_notes'
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
self.current_notes = ''
|
self.current_notes = ''
|
||||||
self.send_message('apply-highlight', style=self.current_highlight_style.style, uuid=short_uuid(), has_notes=False)
|
self.send_message('apply-highlight', style=self.current_highlight_style.style, uuid=short_uuid(), has_notes=False)
|
||||||
self.state = WAITING
|
self.state = WAITING
|
||||||
self.update_position()
|
self.update_position()
|
||||||
|
|
||||||
def quick_highlight_with_style(self, hs):
|
def quick_highlight_with_style(self, hs):
|
||||||
self.current_highlight_style = hs
|
self.current_highlight_style = hs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user