UI: Fix crash with adding source

Bug introduced with adba393ca8

OBS would crash when adding a new source because the source tree item's
widget would be NULL in the sizeHint function when the list item is first
created.
master
cg2121 2022-08-27 23:02:31 -05:00 committed by Matt Gajownik
parent adba393ca8
commit d69c749aaf
1 changed files with 3 additions and 0 deletions

View File

@ -1757,5 +1757,8 @@ QSize SourceTreeDelegate::sizeHint(const QStyleOptionViewItem &,
SourceTree *tree = qobject_cast<SourceTree *>(parent());
QWidget *item = tree->indexWidget(index);
if (!item)
return (QSize(0, 0));
return (QSize(item->width(), item->height()));
}