Update OptionsWindow.cpp

Fixed typo in comment
This commit is contained in:
Sebastian G 2023-04-10 09:11:43 +02:00 committed by GitHub
parent b75babb84f
commit 1ea964ed85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public:
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const
{
QSize size = QStyledItemDelegate::sizeHint(option, index);
if(size.height() < 20) size.setHeight(20); // ensure enough room for teh combo box
if(size.height() < 20) size.setHeight(20); // ensure enough room for the combo box
return size;
}