mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 10:03:53 +02:00
Prevent selection_bar from becoming visible when create annotations panel is visible
This commit is contained in:
parent
fcbdfc570d
commit
3a5d99051c
1 changed files with 2 additions and 0 deletions
|
|
@ -48,6 +48,8 @@ def hide(self):
|
|||
self.container.style.display = 'none'
|
||||
|
||||
def show(self):
|
||||
if self.view.create_annotation.is_visible:
|
||||
return
|
||||
self.container.style.display = 'block'
|
||||
|
||||
@property
|
||||
|
|
|
|||
Loading…
Reference in a new issue