forked from openlp/openlp
2 row layout for author add widgets
This commit is contained in:
parent
031868ae31
commit
ac44396a40
@ -118,18 +118,21 @@ class Ui_EditSongDialog(object):
|
||||
self.authors_group_box.setObjectName('authors_group_box')
|
||||
self.authors_layout = QtGui.QVBoxLayout(self.authors_group_box)
|
||||
self.authors_layout.setObjectName('authors_layout')
|
||||
self.author_add_layout = QtGui.QHBoxLayout()
|
||||
self.author_add_layout = QtGui.QVBoxLayout()
|
||||
self.author_add_layout.setObjectName('author_add_layout')
|
||||
self.author_type_layout = QtGui.QHBoxLayout()
|
||||
self.author_type_layout.setObjectName('author_type_layout')
|
||||
self.authors_combo_box = create_combo_box(self.authors_group_box, 'authors_combo_box')
|
||||
self.author_add_layout.addWidget(self.authors_combo_box)
|
||||
self.author_types_combo_box = create_combo_box(self.authors_group_box, 'author_types_combo_box', editable=False)
|
||||
# Need to give these boxes some min width, else they are too small
|
||||
self.authors_combo_box.setMinimumWidth(150)
|
||||
self.author_types_combo_box.setMinimumWidth(80)
|
||||
self.author_add_layout.addWidget(self.author_types_combo_box)
|
||||
self.author_type_layout.addWidget(self.author_types_combo_box)
|
||||
self.author_add_button = QtGui.QPushButton(self.authors_group_box)
|
||||
self.author_add_button.setObjectName('author_add_button')
|
||||
self.author_add_layout.addWidget(self.author_add_button)
|
||||
self.author_type_layout.addWidget(self.author_add_button)
|
||||
self.author_add_layout.addLayout(self.author_type_layout)
|
||||
self.authors_layout.addLayout(self.author_add_layout)
|
||||
self.authors_list_view = QtGui.QListWidget(self.authors_group_box)
|
||||
self.authors_list_view.setAlternatingRowColors(True)
|
||||
|
Loading…
Reference in New Issue
Block a user