Remove margins around comments editor

This commit is contained in:
Kovid Goyal 2019-05-14 12:49:07 +05:30
parent 76d9f734e9
commit 47aa91f7ba
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -872,6 +872,7 @@ class MetadataSingleDialog(MetadataSingleDialogBase): # {{{
self.tabs[0].gb2 = gb = QGroupBox(_('Co&mments'), self)
gb.l = l = QVBoxLayout()
l.setContentsMargins(0, 0, 0, 0)
gb.setLayout(l)
l.addWidget(self.comments)
self.splitter.addWidget(gb)