9736: Export options 'Preview' buttons create hidden quickreport.
This commit is contained in:
parent
f2d822b8b7
commit
b2775b3892
@ -53,7 +53,7 @@ LEFT,RIGHT,CENTER = 'LEFT','RIGHT','CENTER'
|
||||
_WIDTH_IN_CHARS = 72
|
||||
|
||||
class DisplayBuf(ManagedWindow):
|
||||
def __init__(self, title, document):
|
||||
def __init__(self, title, document, modal=False):
|
||||
self.title = title
|
||||
ManagedWindow.__init__(self, document.uistate, [],
|
||||
document)
|
||||
@ -70,7 +70,8 @@ class DisplayBuf(ManagedWindow):
|
||||
scrolled_window.add(document.text_view)
|
||||
self.window.vbox.pack_start(scrolled_window, True, True, 0)
|
||||
self.window.show_all()
|
||||
|
||||
self.window.set_modal(modal)
|
||||
|
||||
def build_menu_names(self, obj):
|
||||
return ('View', _('Quick View'))
|
||||
|
||||
@ -154,7 +155,7 @@ class TextBufDoc(BaseDoc, TextDoc):
|
||||
if container:
|
||||
return DocumentManager(_('Quick View'), self, container)
|
||||
else:
|
||||
DisplayBuf(_('Quick View'), self)
|
||||
DisplayBuf(_('Quick View'), self, modal=True)
|
||||
return
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user